2.1 Introduction to OOP Flashcards

1
Q

Block of code that performs a specific task

A

Function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A function written inside a class

A

Method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A class is created with the keyword ______ and then writing the Classname

A

class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Syntax for creating an instance(object)

A

instancename = classname = classname()
Example:
s1 = Student()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Special method to initialize the instance variables of a class

A

Constructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Special method to initialize the instance variables of a class

A

Constructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly