Solved

Which Statement Below Initializes Array Items to Contain 3 Rows

Question 30

Multiple Choice

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 };

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions