oop programming Flashcards

1
Q

what is a Class

A

A blueprint or template for creating objects.

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

Object

A

An actual instance of a class. When you use the blueprint (class), you get a real thing (object).

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

Constructor

A

A special function that automatically runs when an object is created. It sets initial values.

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

Encapsulation

A

Wrapping data (variables) and methods (functions) into a single unit (class), and restricting access.

Use private to hide data and public to expose only what’s necessary.

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

One class inherits properties and behavior (methods) from another.

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

Same function name, different behavior — depending on context.

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

Hiding complex details and showing only essentials. Achieved using abstract classes or interfaces (in other languages).

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

public: Accessible from anywhere.

private: Only accessible inside the class.

protected: Like private, but accessible in derived classes.

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

Class Blueprint Cookie mold
Object Instance of class Actual cookie
Constructor Sets initial values Setup instructions
Encapsulation Hides internal data Remote control buttons only
Inheritance One class inherits another Child inherits traits from parent
Polymorphism One name, many forms Same remote, different devices
Abstraction Hide details, show essentials Car pedals, not engine internals
Access Specifier Controls visibility Public/private signs

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