Answer:
The last option i.e "A class is an instance of its object" is the correct answer of this question.
Explanation:
A class is a collection of variable and method . The class is the blueprint of the object that means class is physical space entity and object is a runtime space entity.It is the the reusability feature of the programming component.
Following are the syntax to declare any class.
Class classname
For Example: class test1
With the help of class we can achieve the inheritance, encapsulation and abstraction etc.
All the other options except the last one are correct option. Because option(1), option(2) and option(3) follow the property of class and object . that's why last option is False.