| preferred AP College board partner for AP classes
AP Computer Science A/Unit 8: 2D Array
Start Practice TestPractice Test
About Exam
medium Solved by 9 students
Dereferencing a Null 2D Array Row
< Prev
Next >

What is the result when the following code is executed?

public class NullRow {
    public static void main(String[] args) {
        int[][] arr = new int[2][];
        arr[0] = new int[]{1, 2};
        arr[1] = null;
        System.out.println(arr[1].length);
    }
}
A

0

B

Compilation error

C

NullPointerException at runtime

D

2

Hint
Did You Know?
Explain Why
Explain All Answers
Check Answer
Show Correct Answer
Report Question

Question Leaderboard

Not enough data yet to show leaderboard.

No comments yet. Be the first to comment!

AI Tutor

How can I help?

APFIVE © 2020.
Email: apfive@apfive.org|Privacy Policy