InterviewSolution
Saved Bookmarks
| 1. |
What is meant by object in Java? |
|
Answer» Explanation: A Java OBJECT is a COMBINATION of data and procedures working on the AVAILABLE data. An object has a state and behavior. The state of an object is STORED in fields (variables), while methods (FUNCTIONS) display the object's behavior. Objects are created from templates known as classes. |
|