w4ter

                Never    
Text
       
import java.util.*;
class Employeedetails{

	String name;
	int salary;
	int age;
	int phn no;
	String address;
 
	void print salary()
	{
		System.out.println("salary of employee:" +salary);

	}
}

class officer extends Employee{
	String specialisation;
	String department;
}

class manager 

Raw Text