What elements are in the array newArray after the following code is executed?

```
Dim firstArray() As Integer = {1, 2, 3}
Dim secondArray() As Integer = {3, 4, 5, 6}
Dim newArray() As Integer = firstArray.Union(secondArray).ToArray
```
(A) 1, 2, 3, 3, 4, 5, 6
(B) 1, 2, 3, 4, 5, 6
(C) 3
(D) 1, 2


(B) 1, 2, 3, 4, 5, 6

Computer Science & Information Technology

You might also like to view...

A(n) ________ is an input device that looks like a pen

A) stylus B) joystick C) pointer D) e-rod

Computer Science & Information Technology

To ensure readability, use left-justification or justified text type alignments. 

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

You should not remove a portable flash memory storage while it is in use because the operating system may still be accessing the device.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The chart's ____________________ handles, the small series of dots at the corners and sides of the chart's border, indicate that the chart is selected.

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

Computer Science & Information Technology