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...
An enterprise system ensures that information can be shared with all authorized users in different functional.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology
List signs of virus and malware infection.
What will be an ideal response?
Computer Science & Information Technology