InterviewSolution
Saved Bookmarks
| 1. |
What does the following mean ? Employee staff = new Employee (); |
|
Answer» Employee staff=new Employee() means that staff is an object of class Employee and it is being created. |
|