SQL  Quiz 4

SQL Quiz 4

University

42 Qs

quiz-placeholder

Similar activities

[Sun*_Internship] QA Quizzes

[Sun*_Internship] QA Quizzes

University

39 Qs

quiz based on web design

quiz based on web design

University

40 Qs

Database Management System Quiz

Database Management System Quiz

University

38 Qs

SQL_29/11

SQL_29/11

1st Grade - University

47 Qs

DBMS

DBMS

University - Professional Development

45 Qs

DBMS Unit 1

DBMS Unit 1

University

40 Qs

Szkolenie cz.1 Podstawy języka SQL

Szkolenie cz.1 Podstawy języka SQL

University

40 Qs

Relationship in Database

Relationship in Database

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