General Programming Flashcards

1
Q

Inheritance

A

Definition: Inheritance is a mechanism where a new class (child/subclass) derives properties and behaviors (methods and fields) from an existing class (parent/superclass).

Relationship: It represents an “is-a” relationship. For example, a Dog class can inherit from an Animal class because a dog is a type of animal.

Reusability: Promotes code reuse by allowing the child class to inherit and extend the functionality of the parent class.

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

Composition

A

Definition: Composition is a design principle where a class is composed of one or more objects of other classes. It represents a “has-a” relationship.

Relationship: It represents a “has-a” relationship. For example, a Car class can have an Engine object because a car has an engine.

Reusability: Achieves code reuse by combining smaller, reusable components.

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

Big O Notation

A

Big O Notation is a way to describe the time complexity or space complexity of an algorithm. It measures how the runtime or memory usage of an algorithm grows as the input size grows. It helps developers understand the efficiency of their code, especially when dealing with large datasets.

Time Complexity: How the runtime of an algorithm increases as the input size increases.

Space Complexity: How much memory an algorithm uses as the input size increases.

Big O focuses on the worst-case scenario and ignores constants and lower-order terms, as they become insignificant for large inputs.

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

Big O(1)

A

Constant time. The runtime does not depend on the input size.

Example: Accessing an element in an array by index.

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

Big O(log n)

A

Logarithmic time. The runtime grows logarithmically as the input size increases.

Example: Binary search.

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

Big O(n)

A

Linear time. The runtime grows linearly with the input size.

Example: Looping through an array.

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

Big O(n log n)

A

Linearithmic time. Common in efficient sorting algorithms.

Example: Merge sort, Quick sort.

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

Big O(n²)

A

Quadratic time. The runtime grows exponentially with the input size.

Example: Nested loops.

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

Big O(2ⁿ)

A

Exponential time. The runtime doubles with each additional input.

Example: Recursive Fibonacci.

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

Dirty Write

A

Definition: A dirty write occurs when one transaction overwrites uncommitted changes made by another transaction.

Scenario:

Transaction A modifies a row but has not yet committed.

Transaction B modifies the same row before Transaction A commits or rolls back.

If Transaction A rolls back, the changes made by Transaction B are based on invalid data.

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

Dirty Read

A

Definition: A dirty read occurs when one transaction reads uncommitted changes made by another transaction.

Scenario:

Transaction A modifies a row but has not yet committed.

Transaction B reads the modified row before Transaction A commits or rolls back.

If Transaction A rolls back, Transaction B has read data that never officially existed.

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