A Level Computing - Normalisation & SQL

A Level Computing - Normalisation & SQL

12th Grade

12 Qs

quiz-placeholder

Similar activities

12th Informatics Practices SQL

12th Informatics Practices SQL

12th Grade

10 Qs

J277 - 2.2 - The use of SQL to search for data

J277 - 2.2 - The use of SQL to search for data

10th Grade - University

10 Qs

IT Jobs and Careers

IT Jobs and Careers

9th - 12th Grade

16 Qs

Y3 - Data - Branching Databases

Y3 - Data - Branching Databases

2nd Grade - University

11 Qs

SLR10: SQL

SLR10: SQL

12th Grade

10 Qs

MySQL Practice

MySQL Practice

12th Grade

9 Qs

MS Access Database

MS Access Database

KG - University

10 Qs

MYSQL

MYSQL

12th Grade

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?