×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Java Package Examples Java Mixed Programs
Java Interface Programs - Java
16563    Arnab De    03/08/2017

In Java, Multiple inheritances are not supported. But if we what to implement the same then we have to create an interface. In the interface, we create the structure of an instance but we cannot create any instance of an interface. For that, we first implement the interface into a class then override all the method of the interface.

Create an interface Department containing attributes deptName and deptHead. It also has abstract methods for printing the attributes. Create a class hostel containing hostelName, hostelLocation and numberOfRooms. The class contains method printing the attributes. Then write Student class extending the Hostel class and implementing the Department interface. This class contains attributes studentName, regdNo, electiveSubject and avgMarks. Write suitable printData method for this class. Also, implement the abstract methods of the Department interface. Write a driver class to test the Student class. The program should be menu driven containing the options:

  1. Admit new student
  2. Migrate a student
  3. Display details of a student
softetechnologies

For the third option, a search is to be made on the basis of the entered registration number

	public interface Department{
		public void getDetpName();
		public void getDetpHead();
	}
	
	class Hostel{
		protected String hname,hlocation;
		int noofroom;
		void getHostelName(){
			System.out.println("Name Of the Hostel : " + hname);
		}
		void getHostelLocation(){
			System.out.println("Hostel Location : " + hlocation);
		}
		void getNoOfRoom(){
			System.out.println("Total Room : " + noofroom);
		}
	}
	
	import java.util.*;
	class Student extends Hostel implements Department
	{
		String sname,regno,elesub;
		String deptName,deptHead;
		int avgMarks;
		void getStudentName(){
			System.out.println("Student : " + sname);
		}
		String getStudentRegNo(){
			return regno;
		}
		void getElectiveSubject(){
			System.out.println("Elective Subject : " + elesub);
		}
		void getAvgMarks(){
			System.out.println("Average Marks : " + avgMarks);
		}
		public void getDetpName(){
			System.out.println("Department Name : " + deptName);
		}
		public void getDetpHead(){
			System.out.println("Department Head : " + deptHead);
		}
		void addStudent(){
			Scanner sc=new Scanner(System.in);
			System.out.print("Enter Student name : ");
			sname=sc.nextLine();
			System.out.print("Enter Registration Number : ");
			regno=sc.nextLine();
			System.out.print("Enter Elective Subject : ");
			elesub=sc.nextLine();
			System.out.print("Enter Hostel Name : ");
			hname=sc.nextLine();
			System.out.print("Enter Hostel Location : ");
			hlocation=sc.nextLine();
			System.out.print("Enter Department Name : ");
			deptName=sc.nextLine();
			System.out.print("Enter Department Head : ");
			deptHead=sc.nextLine();
			System.out.print("Enter No of room : ");
			noofroom=sc.nextInt();
			System.out.print("Enter Avg Marks : ");
			avgMarks=sc.nextInt();
		}
		void migrate(){
			Scanner sc=new Scanner(System.in);
			System.out.print("Enter new Department Name : ");
			deptName=sc.nextLine();
			System.out.print("Enter new Department Head : ");
			deptHead=sc.nextLine();
		}
		void display(){
			getStudentName();
			System.out.println(" Student Registration No is : " + getStudentRegNo());
			getElectiveSubject();
			getAvgMarks();
			getDetpName();
			getDetpHead();
		}
	}
	
	import java.util.*;
	class StudentMaster{
		public static void main(String []args){
			Scanner sc=new Scanner(System.in);
			Student []st=new Student[100];
			int sno=0;
			String rno;
			int ch;
			boolean b;
			while(true){
				System.out.println("\n 1. Admit a student");
				System.out.println(" 2. Migrate a student");
				System.out.println(" 3. Display");
				System.out.println(" 4. Exit");
				System.out.println(" 5. Enter Your Choice");
				ch=sc.nextInt();
				switch(ch){
					case 1:
						st[sno]=new Student();
						st[sno++].addStudent();
						break;
					case 2:
						System.out.println("Enter Registration no : ");
						rno=sc.next();
						b=false;
						for(int i=0;i<sno;i++){
							if(st[i].getStudentRegNo().equals(rno)){
								b=true;
								st[0].migrate();
								break;
							}
						}
						if(b==false)
						{
							System.out.println("Student Not Found");
						}
						break;
					case 3:
						System.out.println("Enter Registration no : ");
						rno=sc.next();
						b=false;
						for(int i=0;i<sno;i++){
							if(st[i].getStudentRegNo().equals(rno)){
							b=true;
							st[0].display();
							break;
							}
						}
						if(b==false){
							System.out.println("Student Not Found");
						}
						break;
					case 4:
						System.exit(0);
					default:
						System.out.println("--Invalid Entry--");
				}
			}
		}
	}
softetechnologies
Java Package Examples Java Mixed Programs
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Swami Vivekananda
Education is the manifestationof the perfection already in man.
Swami Vivekananda
3592
57.3
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     43551
01/01/2018     36485
25/06/2018     35498
28/06/2017     34551
02/08/2017     32982
01/08/2017     27463
06/07/2017     27212
15/05/2017     26845
14/07/2017     22461
21/04/2018     21111
softetechnologies