In ____ copying, each reference variable refers to its own object.

A. shallow
B. deep
C. method
D. object


Answer: B

Computer Science & Information Technology

You might also like to view...

Case-Based Critical Thinking QuestionsCase 2Bernard knows that Access has a series of special types of queries that can help him evaluate and verify the data stored in a database. He uses the Help resources available with Access to learn more about these queries. Bernard is looking for a way to identify the same customer who is entered multiple times with different IDs in his database. Which of the following wizards for specialized queries will be most helpful to him?

A. Find Duplicates B. Find Unmatched C. Crosstab D. Find Unique

Computer Science & Information Technology

The following program displays __________.

``` public class Test { public static void main(String[] args) { String s = "Java"; StringBuilder buffer = new StringBuilder(s); change(s); System.out.println(s); } private static void change(String s) { s = s + " and HTML"; } } ``` a. Java b. Java and HTML c. and HTML d. nothing is displayed

Computer Science & Information Technology

When an update query is created, a(n) _________________________ row displays in the design grid.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

As you define CSS rules for each page element, Dreamweaver updates the file named ______________________, the main style sheet for the website.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology