Question: 10. Create a test class which will have main method in it and will do as follows: Create five different objects of Employee class using

10. Create a test class which will have main method in it and will do as follows:

Create five different objects of Employee class using all constructors. One should be created at least using non-parametrised constructor.

For objects created with non-parametrised constructor, use setter to set the values and display the details.

For all other objects, display details of all employees using other method.

a. How many constructors does the class Rectangle provide?

b. How many methods does the class Rectangle provide?

c. How many instance variables does the class Rectangle have?

d. Briefly explain the purpose of the following two lines of code: Rectangle aRectangle; aRectangle = new Rectangle();

e. The two lines of code can be combined into one. Provide this one line of code

: f. What method is used to set the width of an instance of the Rectangle class? What data type does it expect as an argument?

g. What method is used to set the length of an instance of the Rectangle class? What data type does it expect as an argument?

h. Consider the following code: Rectangle aRectangle = newRectangle(); aRectangle.setLength(5.5); aRectangle.setWidth(10.2); i. Draw a rough diagram to represent the rectangle that has been created: ii. Provide the line of code that you would use to change the width of the Rectangle from 10.2 to 11.5 (ie how would you set the width to be 11.5):

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!