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.Intersect(secondArray).ToArray
```
(A) 1, 2, 3, 3, 4, 5, 6
(B) 1, 2, 3, 4, 5, 6
(C) 3
(D) 1, 2

(C) 3

Computer Science & Information Technology

You might also like to view...

Which choice best describes a federation?

A A single sign-on technique that allows nonrelated third-party organizations access to network resources B Organizations that may rely on each other in the event of a disaster event C An association of nonrelated third-party organizations that share information based upon a single sign-on D Group organizations that share immediate information concerning zero day attacks

Computer Science & Information Technology

An IDE offers sophisticated website design, publishing, and management capabilities.

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

Computer Science & Information Technology