Databaser Flashcards

1
Q

Cartesian Product:

Person x Country

{
(1, “Linus”, “Rudbeck”, 27),
(2, “Jerome”, “Landre”, 103),
(3, “Mira”, “Pop”, 46)
}
The content of the table Country is:
{
(27, “Sweden”),
(46, “Romania”),
(103, “France”)
}

A

{
(1, ”Linus”, ”Rudbeck”, 27, 27, ”Sweden”),
(1, “Linus”, “Rudbeck”, 27, 46, “Romania”),
(1, “Linus”, “Rudbeck”, 27, 103, “France”),
(2, “Jerome”, “Landre”, 103, 27, “Sweden”),
(2, “Jerome”, “Landre”, 103, 46, “Romania”),
(2, “Jerome”, “Landre”, 103, 103, “France”),
(3, “Mira”, “Pop”, 46, 27, “Sweden”),
(3, “Mira”, “Pop”, 46, 46, “Romania”),
(3, “Mira”, “Pop”, 46, 103, “France”)
}

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

What is the generic name of the “rectangles” in ER diagrams?

A

Entity

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

What is the generic name of the “diamonds” in ER diagrams?

A

Relations

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

What is the generic name of the “ellipses” in ER diagrams?

A

Attributes

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

What is the generic name of the underlined elements in ER diagrams?

A

Primary key

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

What is the generic name of “0:”? Explain what “0”, “1” (not present in this diagram but possible in other diagrams) and “” represent in ER diagrams?

A
  • Cardinalites
  • min = 0
  • max = *
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

JSON:

[ ]

A

Array

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

JSON:

{ }

A

Object

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

JSON:

“key”:”value”

A

A key/value pair separated by :

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

JSON:

” “

A

A character string

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

JSON:

,

A

Separator between objects and key/value pairs

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

Please write the answer in the text box below and give an example of a movies variable in JSON containing an array of three movies, each movie has a “title”, a “director”, and a “year”, fill in the information of each book as “realistic” data:

A

{
“movies”: [
{“title”: “Inception”, “director”: “Chistopher Nolan”, “year”: 2010},
{“title”: “The Matrix”, “director”: “Lana Wachowski, Lilly Wachowski”, “year”: 1999},
{“title”: “Parasite”, “director”: “Bong Joon-ho”, “year”: 2019}
]
}

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

What do we need for 1NF?

A
  • Only one value per cell
  • No repeating groups
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What do we need for 2NF?

A
  • 1NF
  • PK is a single column attribute
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What do we need for 3NF?

A
  • 2NF
  • No transitive dependencies
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are the advantages to have a database in 3NF?

A

To avoid problems when you insert, delete and update

17
Q

Closure:

We have the relation
R0 = {A, B, C, D, E, F}
and the functional dependencies
F0 = { {A} → {C}, {C} → {F}, {D,E} → {B}, {F} → {D, E} }

  • Compute the closure {A}+
  • Compute the closure {B}+
  • Compute the closure {C}+
  • What is the primary key?
A

{A}+ = {A, C, F, D, E, B}
{B}+ = {B}
{C}+ = {C, F, D, E, B}

  • A is the primary key
18
Q

What does each letter of CRUD mean?

A

C = Create
R = Read
U = Update
D = Delete