SQL  Quiz 4

SQL Quiz 4

University

42 Qs

quiz-placeholder

Similar activities

JavaScript - Practice 8

JavaScript - Practice 8

University

40 Qs

Java Script

Java Script

9th Grade - Professional Development

39 Qs

A4ALGU CLUB EVENT QUIZ

A4ALGU CLUB EVENT QUIZ

University

40 Qs

Exam

Exam

University

42 Qs

ссылки из общей группы

ссылки из общей группы

University

37 Qs

Android Development Associate

Android Development Associate

University

40 Qs

SQL Practice Exam 2

SQL Practice Exam 2

University

40 Qs

Database Review

Database Review

10th Grade - Professional Development

42 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));