SQL  Quiz 4

SQL Quiz 4

University

42 Qs

quiz-placeholder

Similar activities

Evaluación Diagnóstica: Educación Dual Cecytem

Evaluación Diagnóstica: Educación Dual Cecytem

University

41 Qs

INFORMATIKA K9S1 TP. 2024/2025

INFORMATIKA K9S1 TP. 2024/2025

9th Grade - University

40 Qs

PTS AIJ XI TKJ GENAP 2022/2023

PTS AIJ XI TKJ GENAP 2022/2023

University

40 Qs

AW24_RECUPERACIÓN

AW24_RECUPERACIÓN

University

40 Qs

SQL Practice Exam 2

SQL Practice Exam 2

University

40 Qs

Web System Midterm Exam

Web System Midterm Exam

University

43 Qs

Latihan Soal Basis Data 1

Latihan Soal Basis Data 1

University

40 Qs

Android Development Associate

Android Development Associate

University

40 Qs

SQL  Quiz 4

SQL Quiz 4

Assessment

Quiz

Computers

University

Hard

Created by

Zhannat Akylbek

FREE Resource

42 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select the Normal Form by the table description: Schedule (sch_id (PK), teacher_id, subject_id, time)

<3 NF>

<0 NF>

<1 NF>

<2 NF>

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select the Normal Form by the table description: Departments (department_id (PK), name, teacher_lastnames)

<0 NF>

<1 NF>

<2 NF>

<3 NF>

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select the Normal Form by the table description: Groups (group_id (PK), group_name, student_lastnames)

<0 NF>

<1 NF>

<2 NF>

<3 NF>

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Third normal form is based on the concept of ...

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which normal form is considered "good" for relational database design?

<3NF>

<0NF>

<1NF>

<2NF>

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Complete the code to create the table Teachers (teach_id (PK), last_name, depart_id (FK)): CREATE TABLE Teachers( teach_id int PRIMARY KEY, last_name varchar(20), depart_id int, ________________ (depart_id) REFERENCES Departments(depart_id));

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Complete the code to create the table Departments (dep_id (PK), dep_name): CREATE TABLE Departments( dep_id int ___________ , dep_name varchar(15));