Explanation of Solution
a.
Given line:
Person p1 = new Student ();
Explanation:
The “Person” and “Student” are two classes. The class “Student” is the derived class and “Person” is the base class...
Explanation of Solution
b.
Given line:
Person p2 = new Undergraduate ();
Explanation:
The “Person” and “Undergraduate” are two classes...
Explanation of Solution
c.
Given line:
Student s1 = new Person ();
Explanation:
The “Person” and “Student” are two classes. The class “Student” is the derived class and “Person” is the base class...
Explanation of Solution
d.
Given line:
Student s2 = new Undergraduate ();
Explanation:
The “Undergraduate” and “Student” are two classes. The class “Undergraduate” is extend from the “Student” class...
Explanation of Solution
e.
Given line:
Undergraduate ug1 = new Person ();
Explanation:
The “Undergraduate” and “Person” are two classes. The class “Undergraduate” is extend from the “Student...
Explanation of Solution
f.
Given line:
Undergraduate ug2 = new Student ();
Explanation:
The “Undergraduate” and “Person” are two classes. The class “Undergraduate” is extend from the “Student...
g.
“Object” class:
All classes in Java inherit from the “Object” class.
- • Directly and indirectly all classes are inherited from the “Object”class.
- • Some of the basic methods of the “Object” class are listed below:
- ○ clone()
- ○ toString()
- ○ equals()
The above methods are automatically created in java when a class is created.
h.
“Object” class:
All classes in Java inherit from the “Object” class.
- • Directly and indirectly all classes are inherited from the “Object”class.
- • Some of the basic methods of the “Object” class are listed below:
- ○ clone()
- ○ toString()
- ○ equals()
The above methods are automatically created in java when a class is created.
Want to see the full answer?
Check out a sample textbook solutionChapter 8 Solutions
Java: An Introduction to Problem Solving and Programming (8th Edition)
- helppparrow_forwardYou are given the following sequence diagram. Which operations does class A have according to the diagram? a1:A a2:A a3:A b1:B c1:C X Ⓒy():void x():void z(String):void y():void x():void z(): String y():void x():void z(): String ју Z Z Z:123arrow_forward7- A course has many lectures. Each lecture has a start time and a class number.What should be the relation between the Course class and the Lecture class?a) The Lecture class should be a subclass of the Course class.b) The Course class should be a subclass of the Lecture class.c) The Course class should have a Lecture variable.arrow_forward
- Question 1: Blood Donation For this question you will be writing a program to solve the same problem as Question 2 from Assignment 4. However, as described at the beginning of the assignment specification your solution for this assignment must not use explicit recursion. Since the purpose, contract, and examples would be identical to the solution for the Assignment 4. However, you are encouraged to properly document and fully test your solution. You are welcome to use code and tests from the model solution in your submission for this question. Here is the problem specification. Hospitals rely on donors to provide blood for people who are in accidents or scheduled for surgery. However, people have different blood types, and some blood types are compatible for donation and others are not. There are eight different blood types: O-, O+, B-, B+, A-, A+, AB-, AB+ The rules for blood donations are shown in a table from the Canadian Blood Services website. Here is a summary of that table: * A…arrow_forwardWhen defining a variable, "type" is not enough. All variables are endowed with their own unique set of characteristics, including their own data type. So how can we make use of this idea, which allows us to describe any variable's properties?arrow_forwardWhat distinguishes a class's static data member from its non-static data member? Give an example of a real-world situation in which a static data member can be beneficial.arrow_forward
- Describe the scope of class.arrow_forwardDefine the struct studentType to implement the basic properties of a student. Define the class studentType with the same components as the struct studentType, and add member functions to manipulate the data members. (Note that the data members of the class studentType must be private.) Write a program to illustrate how to use the class studentType. Struct studentType: struct studentType { string firstName; string lastName; char courseGrade; int testScore; int programmingScore; double GPA; }; An example of the program is shown below: Name: Sara Spilner Grade: A Test score: 89 Programming score: 92 GPA: 3.57 *************** c++ code please This is the code I have but I keep getting error #include<iostream> using namespace std; class studentType { private: string firstName; string lastName; char courseGrade; int testScore; int programmingScore; double GPA; public: studentType(string f, string l, char CG, int TS, int PS, double gpa) { cout<<"Name:…arrow_forwardIntroduction The Object Oriented software model is designed to create a new data type by using the Class structure. Therefore the various operations which define a data type, such as the common operators, assignment, etc., have a software architecture available to create those operations and data types. Assignment Description This assignment is an exercise in creating a complete class definition. A standard way to do that is to use a math data type. Here we define a Rational Number data type in a class called “Rational”. The distinctive feature of this type is the data is kept as numerator and denominator throughout all operations; there is no floating point representation used. The standard math operations, addition, subtraction, etc., are implemented, including the iostream overload. The student will not only come to understand what is required for a complete representation of such a type, but also learn about the internal mechanics of its C++ implementation. The student will be…arrow_forward
- PART I: Given the following UML diagram. Answer the following questions PCRTest - newNum: int //-- auto-increment patientName: String previousResult: int //-- should be less than 35 - currentResult: int //-- should be less than 35 + PCRTest (patientName: String, previousResult: int) +setcurrentResult (int r):void +getcurrentResult () : int +isRecovered () : boolean +tostring () : String + GenerateCode (): String //-- explained in part III Question PCRTest as weir as the constructor and the setter and getter of the currentResult. Note that: • The attribute newNum is incremented when a PCRTest object is created. It represents the total ): Implement all the data fields represented in the UML diagram of the class number of tests. • The constructor accepts the patient's name and the previous test result. The value of previousResult and currentResult should be between 0 and 35. • The method setcurrentResult(int r) assigns the value r to the currentResult attribute. The method…arrow_forwardPlease written by computer source java codearrow_forwardGiven the following UML diagram , write the code for only the constructors. Person name:String age:int Person() Person(newName:String.newAge:int)arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education