Question: 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
- 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.
- How many constructors does the class Rectangle provide?
- How many methods does the class Rectangle provide?
- How many instance variables does the class Rectangle have?
- Briefly explain the purpose of the following two lines of code:
Rectangle aRectangle;
aRectangle = new Rectangle();
- The two lines of code can be combined into on Provide this one line of code:
- What method is used to set the width of an instance of the Rectangle class? What data type does it expect as an argument?
- What method is used to set the length of an instance of the Rectangle class? What data type does it expect as an argument?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
