Which statement below initializes array items to contain 3 rows and 2 columns?

a) Dim items(,) As Integer = {{ 2, 4 }, { 6, 8 }, { 10, 12 }}
b) Dim items(,) As Integer = {{ 2, 6, 10 }, { 4, 8, 12 }};
c) Dim items(,) As Integer = { 2, 4 }, { 6, 8 }, { 10, 12 };
d) Dim items(,) As Integer = { 2, 6, 10 }, { 4, 8, 12 };

a) Dim items(,) As Integer = {{ 2, 4 }, { 6, 8 }, { 10, 12 }}

Computer Science & Information Technology

You might also like to view...

The messages we can send an object are listed under the Properties tab of the functions area.

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

Computer Science & Information Technology

Define boxing and unboxing.

What will be an ideal response?

Computer Science & Information Technology