package task1.multipleFileExample; import java.util.*; public class Test { //Scanner in = new Scanner(System.in); public static void main(String [] args){ Employee e = new Employee(); /*ß e.setId(153); System.out.println("Your id Number is " +e.getId()); e.setName("Suresh Kumar"); System.out.println("Your Name is " + e.getName()); e.setDepartment("Information Technology"); System.out.println("Your Department is " + e.getDepartment()); e.setAddress("Akhtar Colony Karachi"); System.out.println("Your Address is " + e.getAddress());*/ Student s = new Student(); s.id= 153; System.out.println("Your id Numbr is " + s.id); s.name ="Mr Suresh Kumar"; System.out.println("Your name is " + s.name); s.department ="Information Technology"; System.out.println("Your Department is " + s.department); s.address ="Akhtar Colony Kerachi"; System.out.println("Your name is " + s.address); System.out.println("Task Completed "); } }