What is class and object in Java ?
Answers
Answered by
3
Answer:
Classes and Objects are basic concepts of Object Oriented Programming which revolve around the real life entities. Class. A class is a user defined blueprint or prototype from which objects are created. It represents the set of properties or methods that are common to all objects of one ...
Answered by
2
Explanation:
A class is a user defined blueprint or prototype from which objects are created. It represents the set of
objects, which as you know, interact by invoking methods.
It is a basic unit of Object Oriented Programming and represents the real life entities. A typical Java program creates many objects, which as you know, interact by invoking methods.
please mark me as brainliest❤❤
Similar questions