Object Oriented Programming Flashcards

1
Q

What is object oriented programming?

A

Programming with the view of objects rather than just sequential patterns. This allows us to program more efficiently than if we had just plain variables.

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

What is a class?

A

A class is a template or blueprint that allows to create objects. In a class, we usually have multiple methods. Furthermore, it allows us to keep multiple methods in one place if it pertains to the same type of object.

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

What is a method?

A

A method is similar to a function that operates on a object of a class. Specifically, it can help us operate on an attribute of a created object.

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

What’s an attribute?

A

An attribute is a descriptor/characteristic for an object in a class. It’s usually assigned to the object in the constructor.

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

What is a constructor?

A

A constructor is what assigns attributes to an object. It allows us to create objects. Another term for constructor is the initializer which, like in the name, requires for us to initialize the objects in the class.

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

What’s another way to express that a variable, x, is a object of a class?

A

Another way to say it’s an object of a class is to say it’s an instance of a class.

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

What is an object?

A

An object is something that has attributes and usually methods. It’s created via a class.

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

What is the difference between a function and a method?

A

A method is a function that operates on an object of a class, while a function is a standalone operator that is not restricted to operating on a object. A function is defined globally while a method is defined and restricted to it’s class.

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

What are **kwargs?

A

It’s an acronym that stands for:
[ K ]ey [ w ]ord [ arg ]uments
It allows us to provide any number of arguments. **kwargs are not limited to being used in object oriented programming.

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

What’s the benefit of using a built in string method compared to a manually created one?

A

It allows us to access the functionality of the string method by using the print function automatically.

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