What is the output of the following code?
```
public class Test {
public static void main(String[] args) {
int[][][] data = {{{1, 2}, {3, 4}},
{{5, 6}, {7, 8}}};
System.out.print(data[1][0][0]);
}
}```
a. 1
b. 2
c. 4
d. 5
e. 6
d
Computer Science & Information Technology
You might also like to view...
How do you apply vertical alignment of text in a text frame?
What will be an ideal response?
Computer Science & Information Technology
An administrator receives a call from a user who is unable to receive email. After checking the workstation and email settings the administrator is still not able to determine the problem. Which of the following is the NEXT step that the administrator should take?
A. Create an action plan. B. Escalate the issue. C. Reboot the mail server. D. Document the solution.
Computer Science & Information Technology