OOP (Python) Flashcards

1
Q

Advantage of OOP

A

Better for planning
Source code is written independently of main code
Creates a good framework
Easier to maintain

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

What is a class in OOP

A

The class is a blueprint for an object. Made of attributes and methods

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

What are the attribute

A

Properties defined within the class. They are private

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

What are the methods

A

The procedures or functions are defined in the class. Usually public and can be accessed inside and outside the class

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

What is instantiation

A

Creating an object from a class using a constructor

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

What is encapsulation

A

Technique of hiding details from the user to reduce code complexity. Way to restrict direct access to the class

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

What is inheritance

A

Requires attributes to be protected. But allows for methods and attributes to be passed down to child objects.
Drawn: Child —> Parent

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

What is polymorphism

A

In a child object overriding a method or attribute of the parent node

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

What are the signs for access modifiers in UML OOP

A

’+’ Public
‘-‘ Private
‘#’ Protected

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

What is composition

A

The combination of simpler classes into fusing into a more complex one. Parent class needed as cannot survive on its own.
Drawn using a shaded diamond

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

What is aggregation

A

Where the classes have a connection. If the parent class is deleted the lower instance still survives. Drawn using a unshaded diamond

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