Errata OCP 11 Study Guide
Posted: Sat Jan 04, 2020 10:24 pm
Deshmukh, Hanumant. OCP Oracle Certified Professional Java SE 11 Programmer I Exam Fundamentals 1Z0-815: Study guide for passing the OCP Java 11 Developer Certification Part 1 Exam 1Z0-815 (p. 66). Enthuware. Kindle Edition.
3.5 Exercise :
variable p2 is not declared in this below code .
3.5 Exercise :
variable p2 is not declared in this below code .
Code: Select all
public class Person {
int id;
String name;
java.util.Date dob;
boolean VIP;
public static void main(String[] args) {
Person p1 = new Person();
p2 = p1;
int id = p2.id;
p1.name = args[0];
}
public String getName() {
return name;
}
}