Are you taking CLEP classes? Try clep.ai
| preferred AP College board partner for AP classes
medium Solved by 2 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

2

C

NullPointerException at runtime

D

Compilation error

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

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|FAQ