sample file Code File
Click On this to Download The File 1. class Person { String name,dob; double mno; Person(String name,double mno,String dob) { this.name=name; this.mno=mno; this.dob=dob; } void print_data() { System.out.println("Name:"+name); System.out.println("Mobile number:"+mno); System.out.println("Date of birth:"+dob); } } class Employee extends Person { int eno,salary; String org,des,doj; Employee(int eno,String org,String des,int salary,String doj) { super("John",9876543210d,"10/11/1998"); this.eno=eno; this.org=org; this.des=des; this.salary=salary; this.doj=doj; } void print_info() { super.print_data(); System.out.println("Emp number:"+eno); System.out.println("Organization Name:"+org); System.out.println("Designation:"+org); System.out.println("Date of birth:"+dob); } } class Imple_exam { public static void main(String args[]) { Employee e=new Employee(101,"Infosys","S...
