OOP Flashcards

(6 cards)

1
Q

is a programming paradigm that organizes
software design around objects, rather than
functions and logic.

A

OOP (Object-Oriented Programming)

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

It’s a way of structuring code that makes it
more modular, reusable, and scalable.

A

OOP (Object-Oriented Programming)

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

is a fundamental concept in Object- Oriented Programming (OOP) and serves as the blueprint or prototype from which objects are created

A

Classes

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

Classes contains all the – and –

A

attributes and methods

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

These are the global variables declared
inside the class of our object and are used to create variations of an object using
only one class.

A

Attributes

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

Process of creating an object using a class so we can use it in our program.
className identifier = new className():

A

Class Instantiation

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