Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Contact Details of Hosteller SNMR College of Engineering and Technology wants to create application to store their students details as well as the details of

Contact Details of Hosteller

SNMR College of Engineering and Technology wants to create application to store their students details as well as the details of hostellers.

In case of any changes to be made to the attributes,admin can update the details like room number and phone number of the hosteler.

Develop a program to implement this scenario.

Create public class Student withprotected attributes :

int studentId

String name

int departmentId

String gender

String phone

Create public class Hosteller with private attributes

String hostelName

int roomNumber

Make this class inherit the Student class, as it holds all the properties of Student.

Use appropriate public getters and setters for both the classes.

Write class Main with the main function.

In Main class get the input of the hosteller using the method :

public static Hosteller getHostellerDetails().

Invoke this method from the main method and then modify the room number and phone number, if needed.

Sample Input 1:

Enter the Details:

Student Id

1

Student Name

John

Department Id

101

Gender

Male

Phone Number

9876543210

Hostel Name

YMCA

Room Number

10

Modify Room Number(Y/N)

Y

New Room Number

11

Modify Phone Number(Y/N)

Y

New Phone Number

9876543121

SampleOutput 1:

The Student Details

1John 101 Male 9876543121 YMCA 11

Sample Input 2:

Enter the Details:

Student Id

2

Student Name

John Paul

Department Id

112

Gender

Male

Phone Number

9885526536

Hostel Name

YMBA

Room Number

5

Modify Room Number(Y/N)

N

Modify Phone Number(Y/N)

N

SampleOutput 2:

The Student Details:

2 John Paul 112 Male 9885526536 YMBA 5

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Dental Assisting

Authors: Doni Bird, Debbie Robinson

13th Edition

978-0323624855, 0323624855

Students also viewed these Programming questions