2.1 Introduction to OOP Flashcards
1
Q
Block of code that performs a specific task
A
Function
2
Q
A function written inside a class
A
Method
3
Q
A class is created with the keyword ______ and then writing the Classname
A
class
4
Q
Syntax for creating an instance(object)
A
instancename = classname = classname()
Example:
s1 = Student()
5
Q
Special method to initialize the instance variables of a class
A
Constructor
6
Q
Special method to initialize the instance variables of a class
A
Constructor