
The below program we created three files named as Client, Student, and Marker. We declare the main method in Client class. The objective of this program is to show you the use of objects in java.
For Compilation Javac -d . Client.java is used. And for execution Java Client is used.
Student.java
package Student;
public class Student
{
public int age;
public String name;
public int id;
}
Marker.java
package Marker;
public class...