Programming concepts Flashcards

1
Q

What is data normalization?

A

Data normalization in programming is the process of organizing and structuring data within a database to reduce redundancy, eliminate anomalies, and enhance overall data integrity.

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

What are main objectives of data normalization?

A

The main objectives of data normalization are:
- Reduce data redundancy and improve data integrity.
- Eliminate undesirable insertion, update, and deletion dependencies.
- Make the database more informative and adaptable to changes.
- Enhance the efficiency of data storage and retrieval.

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

What are benefits of data normalization? (4)

A
  1. Improved data consistency and accuracy.
  2. Reduced data redundancy and storage requirements.
  3. Easier data maintenance and updates5.
  4. Enhanced query performance and data analysis capabilities3.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the 3 normal forms in data normalization?

A

First Normal Form (1NF)
- Ensures that each column contains atomic (indivisible) values.
Eliminates repeating groups and ensures each row is unique2.

Second Normal Form (2NF)
- Builds on 1NF by ensuring all non-key attributes are fully dependent on the primary key.
- Requires the creation of separate tables for subsets of data that apply to multiple rows.

Third Normal Form (3NF)
- Eliminates transitive dependencies between non-key attributes.

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

What are the 5 kind of relationships in databases?

A

One-to-One (1:1) Relationship
One-to-Many (1:M) Relationship
Many-to-One (M:1) Relationship
Many-to-Many (M:M) Relationship
Self-Referencing (Recursive) Relationship

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

One-to-One (1:1) Relationship

A

Definition: In this relationship, each record in one table is associated with exactly one record in another table.

Example: A person has one passport. Each passport is assigned to exactly one person.

Use Case: This relationship is used when one entity is closely linked to another, and both share a unique identifier.

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

One-to-Many (1:M) Relationship

A

Definition: In a one-to-many relationship, a single record in one table can be associated with multiple records in another table, but each record in the second table is associated with only one record in the first table.

Example: A department can have many employees, but each employee belongs to only one department.

Use Case: This is the most common type of relationship. It is typically used to represent parent-child relationships between entities.

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

Many-to-One (M:1) Relationship

A

Definition: This is essentially the reverse of the one-to-many relationship. Many records in one table can be linked to a single record in another table.

Example: Many employees work in one department. Here, each employee belongs to one department, but a department can have many employees.

Use Case: This is used when multiple entities point to a single entity.

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

Many-to-Many (M:M) Relationship

A

Definition: In this relationship, many records in one table can be related to many records in another table. This is often implemented using a junction (or associative) table that holds the foreign keys of both related tables.

Example: A student can enroll in many courses, and a course can have many students.

Use Case: This relationship is used when entities are mutually related and both sides can have multiple associations.

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

Self-Referencing (Recursive) Relationship (in databases)

A

Definition: This is when a table has a relationship with itself. This can represent hierarchical or recursive relationships within the same table.

Example: An employee manages other employees. The “employees” table would have a “manager_id” column that references the same table.

Use Case: Used for hierarchical structures or when an entity has relationships with other instances of the same entity (e.g., an organizational structure).

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

What is A/B testing?

A

A/B testing is a method of comparing two versions of a webpage, app, or other variable to determine which one performs better. It involves randomly showing different variants to users and using statistical analysis to measure which version achieves better results for specific conversion goals.

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

Why would you use generators instead of list/arrays in Python/JS? (3)

A
  1. Memory Efficiency
  2. Working with a big files
  3. Creating Infinite Sequences
  4. Generators are substantially more memory efficient than lists or arrays because they generate values on-the-fly rather than storing the entire sequence in memory at once.
  5. Generators employ lazy evaluation, computing values only when requested through iteration
  6. def infinite_counter():
    i = 0
    while True:
    yield i
    i += 1

4.

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