The output from the following code is __________.

```
java.util.ArrayList list = new java.util.ArrayList();
list.add("New York");
java.util.ArrayList list1 = list;
list.add("Atlanta");
list1.add("Dallas");
System.out.println(list1);
```
a. [New York]
b. [New York, Atlanta]
c. [New York, Atlanta, Dallas]
d. [New York, Dallas]

c. [New York, Atlanta, Dallas]

Computer Science & Information Technology

You might also like to view...

________ starts your computer with a minimal set of drivers so that you can start your computer when problems with drivers or other software are preventing normal startup

a. Safe Mode b. Recovery Mode c. Last Known Good d. None of the above

Computer Science & Information Technology

A network technician needs to connect two switches. The technician needs a link between them which is capable of handling 10gb. Which of the following media would be optimal for this application?

A. CAT5e cable B. Coax cable C. Fiber Optic cable D. CAT6 cable

Computer Science & Information Technology