Which statement below initializes array items to contain 3 rows and 2 columns?
a. int[][] items = {{2, 4}, {6, 8}, {10, 12}};
b. int[][] items = {{2, 6, 10}, {4, 8, 12}};
c. int[][] items = {2, 4}, {6, 8}, {10, 12};
d. int[][] items = {2, 6, 10}, {4, 8, 12};
A
You might also like to view...
How many usable host IP addresses are available given the following IP address and subnet mask? ip address 10.10.20.1 255.255.255.224
What will be an ideal response?
A control that combines the features of a text box and a list box is a ____.
A. text box B. lookup box C. custom box D. combo box
Access will calculate exactly what you tell it to calculate, even if you make logical errors in the calculation.
Answer the following statement true (T) or false (F)
What is an example of an invalid name for a memory location in C++?
A. 2ndname B. CiTy C. middle_name D. zip3Code