0% found this document useful (0 votes)
87 views

UGRD-ITE6100B Fundamentals of Database System FINAL EXAM

This document summarizes the results of a 40 question SQL assessment completed on December 17, 2022. The assessment consisted of multiple choice and fill-in-the-blank questions covering SQL concepts and was completed in 16 minutes and 52 seconds with a perfect score of 40 out of 40 or 100%. The assessment covered topics such as data definition language, data manipulation language, joins, aggregation, and SQL operators.

Uploaded by

patricia gemina
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
87 views

UGRD-ITE6100B Fundamentals of Database System FINAL EXAM

This document summarizes the results of a 40 question SQL assessment completed on December 17, 2022. The assessment consisted of multiple choice and fill-in-the-blank questions covering SQL concepts and was completed in 16 minutes and 52 seconds with a perfect score of 40 out of 40 or 100%. The assessment covered topics such as data definition language, data manipulation language, joins, aggregation, and SQL operators.

Uploaded by

patricia gemina
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

Started on Saturday, 17 December 2022, 12:27 PM

State Finished
Completed on Saturday, 17 December 2022, 12:44 PM
Time taken 16 mins 52 secs
Marks 40.00/40.00
Grade 100.00 out of 100.00
Question 1
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Cross Join – Used the foreign key as the matching criteria

Select one:
True
False
Question 2
Correct
Mark 1.00 out of 1.00

Flag question
Question text
ALIAS
We use Answer to give column another name.

Question 3
Correct
Mark 3.00 out of 3.00

Flag question
Question text
Matching Type.
What does SQL do
Used to control data access
DCL
Answer 1
Used to retrive data and manipulate data
DML
Answer 2
Used to define and modify data structures
DDL
Answer 3
Feedback
Your answer is correct.
Question 4
Correct
Mark 1.00 out of 1.00

Flag question
Question text
In SQL the command language used is like an Spanish language.

Select one:
True
False
Question 5
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Displays a record if any of the conditions separated by OR is TRUE.
OR operator
Answer:
Question 6
Correct
Mark 1.00 out of 1.00
Flag question
Question text
DML - Manipulate data using commands: insert, update and delete
Select one:
True
False
Question 7
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Compound Conditions use logical operators to filter or connect multiple criteria.
Select one:
True
False
Question 8
Correct
Mark 1.00 out of 1.00

Flag question
Question text
AND operator displays a record if all the conditions separated by AND are FALSE.
Select one:
True
False
Question 9
Correct
Mark 1.00 out of 1.00
Flag question
Question text
To sort the records in descending order, use the DESC keyword.
Select one:
True
False
Question 10
Correct
Mark 1.00 out of 1.00

Flag question
Question text
An Expression can be a single constant, column, variable, or scalar function.

Select one:
True
False
Question 11
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Used to sort the result.
Order by keyw ord
Answer:
Question 12
Correct
Mark 1.00 out of 1.00
Flag question
Question text
OR operator displays a record if any of the conditions separated by OR is TRUE.
Select one:
True
False
Question 13
Correct
Mark 1.00 out of 1.00

Flag question
Question text
It is a command used or a request for information from a database.
Query
Answer:
Question 14
Correct
Mark 1.00 out of 1.00

Flag question
Question text
columns
Asterisk (*) means all or a list of Answer .

Question 15
Correct
Mark 1.00 out of 1.00

Flag question
Question text
DDL used to control data access.
Select one:
True
False
Question 16
Correct
Mark 1.00 out of 1.00

Flag question
Question text
qualifiers
Use Answer if there is ambiguity when distinguishing a column.

Question 17
Correct
Mark 1.00 out of 1.00

Flag question
Question text
An Expression can't be a number, columns, literals, functions connected by operators

Select one:
True
False
Question 18
Correct
Mark 1.00 out of 1.00

Flag question
Question text
SQL is not a Programming Language.
Select one:
True
False
Question 19
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Use to retrieve data from multiple tables.
Table join
Answer:
Question 20
Correct
Mark 1.00 out of 1.00

Flag question
Question text
It is needed when minimum cardinality is optional on a table.

outer join
Answer:
Question 21
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Include all qualified records from the right table in the join condition even if they do not have
matching records in the left table.
right join
Answer:
Question 22
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Include all qualified records from both tables in the join condition.
full join
Answer:
Question 23
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Records that have matching records from two (2) tables
inner join
Answer:
Question 24
Correct
Mark 1.00 out of 1.00

Flag question
Question text
It is a combination of symbols and operators that returns a single value.

Expression
Answer:
Question 25
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Use to get aggregation results for different groups of records.
group by
Answer:
Question 26
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Include all qualified records from the left table in the join condition even if they do not have
matching records in the right table.
left join
Answer:
Question 27
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Structured Query Language is a command use by relational database management system to
perform database operations.

Select one:
True
False
Question 28
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Columns or expressions can be in the SELECT clause only if they are in the GROUP BY clause.
Select one:
True
False
Question 29
Correct
Mark 1.00 out of 1.00

Flag question
Question text
Null
Answer means missing value.

Question 30
Correct
Mark 1.00 out of 1.00

Flag question
Question text
AND operator displays a record if all the conditions separated by AND are TRUE.
Select one:
True
False
Question 31
Correct
Mark 5.00 out of 5.00

Flag question
Question text
Matching Type
Aggregate Functions
minimum of all or selected values min
Answer 1
maximum of all or selected values max
Answer 2
average of all or selected values avg
Answer 3
number of all or selected values count
Answer 4
sum of all or selected values sum
Answer 5
Feedback
Your answer is correct.
Question 32
Correct
Mark 1.00 out of 1.00

Flag question
Question text
SQL is used to retrieve data from relational databases.
Select one:
True
False
Question 33
Correct
Mark 1.00 out of 1.00

Flag question
Question text
DCL - Use the command: Permissions
Select one:
True
False
Question 34
Correct
Mark 1.00 out of 1.00

Flag question
Question text
DDL - Schema: databases, tables, views and many more

Select one:
True
False

You might also like