2D Array Indexing
What is printed when this code is executed?
String[][] expirationDates = { {"01/21", "02/21"}, {"03/21", "04/21"} };
System.out.println(expirationDates[1][0]);
A
04/21
B
01/21
C
02/21
D
03/21
Question Leaderboard
Not enough data yet to show leaderboard.
APFIVE