Question: Consider the following code, where myStudents is an array of Student objects: System.out.println(myStudents[i].printReport()); It crashes with a null pointer exception. Which variable(s) might be null?
Consider the following code, where myStudents is an array of Student objects:
System.out.println(myStudents[i].printReport());
It crashes with a null pointer exception. Which variable(s) might be null?
options:
|
|
just i
|
|
|
just myStudents
|
|
|
just myStudents[i]
|
|
|
myStudents or i or myStudents[i]
|
|
|
myStudents or myStudents[i]
|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
