
Inheritance:
- Inheritance is the concept of inheriting the members and properties of a base class from the derived class.
- The main advantages of inheritance are,
- Code reusability and fast implementation.
- Reduces the size of the program code.
- There are five types of inheritance:
- Single inheritance
- Multiple inheritance
- Hierarchical inheritance
- Multilevel inheritance
- Hybrid inheritance
- If a subclass inherits a base class, then the member functions and data members of the super class can be accessed by the derived class.
- But the derived class does not inherit the constructors from the base classes; each derived class should contain individual constructors.
- The main advantages of inheritance are,
Method Overriding:
- Overriding is a feature that allows a child class or subclass to specifically implement a method that already provided by one of its parent classes or super classes.
- If the method of the subclass has name, parameters and return type as same as the method in the super class, then the method in the subclass is said to override the method in the super-class.
Instance variable:
- Instance variables are the class members declare outside of any constructor, method or block.
- The instance variables are created when an object of the class is created. And the instance variable destroys when the object is destroyed.
- Zero (“0”) is the default value of an instance variable.
- The instance variables can be accessed only using the objects of the class.

Explanation of Solution
a.
Subclasses of “Employee”:
The subclasses of the class “Employee” are, “HourlyEmployee” and “SalariedEmployee”. The class “HourlyEmployee” represents an employee who have been paid hourly. The class “SalariedEmployee” represents an employee who have been paid monthly.
b.
Superclasses of “Manager”:
The superclass of the class “Manager” is, “SalariedEmployee”. The class “Manager” is an employee who have been paid monthly.
c.
Super classes and subclasses of “SalariedEmployee”:
The superclass of the class “SalariedEmployee” is, “Employee”. And subclass of the class “SalariedEmployee” is “Manager”. These classes possess a multilevel inheritance.
d.
Class that override the method “weeklyPay” of “Employee” class:
The class “HourlyEmployee” and “SalariedEmployee” overrides the method “weeklyPay” of the class “Employee”. This is because, the “weeklyPay()” is specific in “HourlyEmployee” and “SalariedEmployee” as it calculates weekly pay for hourly employees and salaried employees separately. So, this method needs to be overridden in these classes.
e.
Class that override the method “setName” of “Employee” class:
None of the subclasses of “Employee” overrides the method “setName()”.
f.
Instance variables of “HourlyEmployee” object:
The instance variables of the class “HourlyEmployee” are, “name” and “hourlyWage”.
Want to see more full solutions like this?
Chapter 9 Solutions
EBK BIG JAVA: EARLY OBJECTS, INTERACTIV
- Write a C program using embedded assembler with a function to convert a digit (0 – 15) to the corresponding ASCII character representing the value in hexadecimal. For numbers 0 – 9, the output will be the characters '0' – '9', for numbers 10 – 15 the characters 'A' – 'F'. The entire core of the program must be written in symbolic instruction language; arrays may not be used. You may only use C to print the result. Tip: This piece of C program will do the same thing: character = number < 10 ? number + '0' : number + 55; As a basis, you can use this program again , which increments a variable. Just replace the INC instruction with ADD and add a test (CMP) with some conditional jump.arrow_forwardAnswer the question fully and accurately by providing the required files(Java Code, Two output files and written answers to questions 1-3 in a word document)meaning question 1 to 3 also provide correct answers for those questions.(note: this quetion is not graded).arrow_forward.NET Interactive Solving Sudoku using Grover's Algorithm We will now solve a simple problem using Grover's algorithm, for which we do not necessarily know the solution beforehand. Our problem is a 2x2 binary sudoku, which in our case has two simple rules: •No column may contain the same value twice •No row may contain the same value twice If we assign each square in our sudoku to a variable like so: 1 V V₁ V3 V2 we want our circuit to output a solution to this sudoku. Note that, while this approach of using Grover's algorithm to solve this problem is not practical (you can probably find the solution in your head!), the purpose of this example is to demonstrate the conversion of classical decision problems into oracles for Grover's algorithm. Turning the Problem into a Circuit We want to create an oracle that will help us solve this problem, and we will start by creating a circuit that identifies a correct solution, we simply need to create a classical function on a quantum circuit that…arrow_forward
- .NET Interactive Solving Sudoku using Grover's Algorithm We will now solve a simple problem using Grover's algorithm, for which we do not necessarily know the solution beforehand. Our problem is a 2x2 binary sudoku, which in our case has two simple rules: •No column may contain the same value twice •No row may contain the same value twice If we assign each square in our sudoku to a variable like so: 1 V V₁ V3 V2 we want our circuit to output a solution to this sudoku. Note that, while this approach of using Grover's algorithm to solve this problem is not practical (you can probably find the solution in your head!), the purpose of this example is to demonstrate the conversion of classical decision problems into oracles for Grover's algorithm. Turning the Problem into a Circuit We want to create an oracle that will help us solve this problem, and we will start by creating a circuit that identifies a correct solution, we simply need to create a classical function on a quantum circuit that…arrow_forwardAnswer two JAVA OOP problems.arrow_forwardAnswer two JAVA OOP problems.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





