Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

IN JAVA: Write a program to model the kinds of people one finds in a university. The categories are students, teachers and teaching assistant (TAs).

IN JAVA:Write a program to model the kinds of people one finds in a university. The categories are students, teachers and teaching assistant (TAs). All these categories are kinds of Person (Person is abstract class. A teaching assistant (TA) is a student and a teacher as well. A person has a name (string). A student has grade point average GPA (between 0 to 4), the teacher has the number of scholarly papers he/she has published and the teacher assistant has the number of courses he/she assists. All the classes contain constructors with default arguments to fill all data spaces. Provide displaymethod to print all data members of an object on the screen. Classes also contain a function called isSuccessful(). Students with a GPA over 3.5 are considered successful. Thisfunction returnstrue ifsomeone issuccessful or false if not. In main(), define an array of Person class, which can point to students, teachers and teacher assistants. The program first asks the kind of person and then lets the user enter the name. For students, the program also asks the GPA; for teacher, its ask for the number of publications and for teacher assistants it asks the number of courses additionally. The maximum number of object, which can be kept in the array, is 10. When the user is finished, the program prints out the names and other data for all persons. It also prints whether a person is successful or not. Delete the array in the end.

image text in transcribed

1. Write all necessary classes (including their methods). 2. Write the main program which will give the above output. 3. Store the output in output.txt file using Filing.

Output: Enter student, teacher, assistant (s/t/a): s Enter name: Umar Enter GPA: 1.5 Enter another (y)? Enter student, teacher, assistant (s/t/a): t Enter name: Ahmed Enter number of publications: 75 Enter another (y)

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

Database Driven Web Sites

Authors: Joline Morrison, Mike Morrison

2nd Edition

? 061906448X, 978-0619064488

More Books

Students also viewed these Databases questions

Question

8. How would you explain your decisions to the city council?

Answered: 1 week ago