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...


Modern Programming Language (Java)


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

Extracted text: 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 display method 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. This function returns true if someone is successful 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.
Output:<br>Enter student, teacher, assistant<br>(s/t/a): s<br>Enter name: Umar<br>Enter GPA: 1.5<br>Enter another (y/n)?<br>y<br>Enter student, teacher, assistant<br>(s/t/a): t<br>Enter name: Ahmed<br>Enter number of publications:<br>75<br>Enter another (y/n)?<br>1. Write all necessary classes (including their methods).<br>2. Write the main program which will give the above output.<br>3. Store the output in output.txt file using Filing.<br>

Extracted text: Output: Enter student, teacher, assistant (s/t/a): s Enter name: Umar Enter GPA: 1.5 Enter another (y/n)? y Enter student, teacher, assistant (s/t/a): t Enter name: Ahmed Enter number of publications: 75 Enter another (y/n)? 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.
Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions ยป

Submit New Assignment

Copy and Paste Your Assignment Here