NEW
Font size
WorksheetsOOPS - PYTHON
Total questions: 11
Worksheet time: 4mins
OOPs
Object Oriented Program
Object Oriented Programming
Object Opted Programming
Objective Oriented Programming
What create objects?
Classes
Functions
Methods
Modules
What are classes?
Blueprints/
Prototypes that defines methods and attributes
A thing which creates objects
A set of attributes and methods
A Blueprint of methods
What are Objects
Instances of a Class
Calling of a class
Identity of a class
Usables of a class
What are Attributes
Functions of a class
Variables of a class
Instance of a class
Variables of a code
What do Objects represent?
Uniqueness
Identity
Instance
Class
What refers to the State of a class?
Attributes
Methods
Constructors
Self
What refers to the behavior of the class
Attribute
Class
Object
Method
what is self?
Self represents the instance of the class in the class
Binds the Attr and methods
A default thing in classes with no use
None of the Above
How to call a method?
Obj.method
Obj.method()
Method(object)
Method.object
Making of a class
class NAME:
class NAME():
class (NAME):
class: Name()
