// // StudentDemo.java // driver code or client code to use the Student class // public class StudentDemo { public static void main(String[] args) { Student he = new Student(); // " ", 0 Student one = new Student("Jon Smith", 82); // Q1: she: "Lisa Obama", 87 Student she = new Student("Lisa Obama", 87); he.set("Rom A. Af.", 45); // Q2: change her name - "April Haller", 99? she.set("April Haller", 99); // dot-nation he.writeOutput(); one.writeOutput(); she.writeOutput(); } }