A Level Computing - Normalisation & SQL

A Level Computing - Normalisation & SQL

12th Grade

12 Qs

quiz-placeholder

Similar activities

SQL

SQL

10th - 12th Grade

11 Qs

Understanding Database Normalisation Concepts

Understanding Database Normalisation Concepts

11th Grade - University

10 Qs

Databases

Databases

11th Grade - University

10 Qs

SQL

SQL

11th - 12th Grade

12 Qs

SQL and databases

SQL and databases

KG - 12th Grade

10 Qs

SQL

SQL

12th Grade

15 Qs

Higher Databases and SQL

Higher Databases and SQL

11th - 12th Grade

15 Qs

SQL with Python Quiz

SQL with Python Quiz

12th Grade - University

15 Qs

A Level Computing - Normalisation & SQL

A Level Computing - Normalisation & SQL

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Jon Bridgeman

Used 101+ times

FREE Resource

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a requirement of 1NF?

It should only have single (atomic) valued attributes/columns.

a Primary Key

One item of data per column in one row (i.e. no repeating data)

Data should be sorted in order

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a requirement of 2NF?

No One-Many relationships

The data should be in 1NF

No partial dependencies

No One-Many relationships

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a requirement of 3NF?

The data should be in 2NF

No non-key fields depend on other non-key fields

All non-key fields only depend on the Primary Key

There are no one-many relationships between tables

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the context of database normalisation, what does "data integrity" mean?

The database occupies less memory and is faster to search

There is no possibility of duplicated data anywhere in the database

The data is safe from hacking and illegal access

It is easier to edit databases tables and data

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What word is missing from the line below?
SELECT *
_______ CUSTOMER;
FROM
WHERE
SELECT
ORDER BY

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of  *?
Selects ALL fields from the table
Selects only the first field in the table
Selects the last field in the table
Shows only the first row in the table

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Return the name and genre of each movie with an imdb_rating greater than 5 and year greater than 2012.
SELECT * FROM movies WHERE imdb_rating > 5 AND year > 2012;
SELECT name, genre FROM movies WHERE imdb_rating < 5 AND year < 2012;
SELECT name, year FROM movies WHERE imdb_rating > 5 year > 2012;
SELECT name, genre FROM movies WHERE imdb_rating > 5 AND year > 2012;

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?