Java SE 8 Programmer 1Z0–808 Practice Full Test 1

© examsiri.com
Question : 80 of 84
 
Marks: +1, -0
Given the code fragments:
class Student {
  String name;
  int age;
}

And,
4.public class Test {
5.  public static void main(String[] args) {
6.    Student s1 = new Student();
7.    Student s2= new Student();
8.    Student s3 = new Student () ;
9.    s1 = s3;
10.    s3 = s2;
11.    s2 = null;
12.  }
13.}
Which statement is true?
Go to Question: