Database Management System II - Prefinals Examination
Quiz by Felipe Sinjetsu
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
30 questions
Show answers
- Q1A key constraint that can be inserted multiple times in the table in different attributes and must be no duplicate.UniqueForeignPrimaryIndex30s
- Q2A constraint that used to fill a column with a default and fixed value if the user didn't input data.
Null
DomainDefaultUnique
30s - Q3A percent sign and asterisk wildcard character can only be effective in criteria when you are using (equal) operator.FALSE, LikeTRUEFALSE, >FALSE, <30s
- Q4A key constraint that specifies the constrained columns' values must UNIQUELY identify each row. Can be inserted once in a table.ForeignIndexUniquePrimary30s
- Q5A key constraint that can be unique, compound, bi-directional, or clustered.UniqueIndexPrimaryForeign30s
- Q6A database object that means the structure of the database or name spaces for a collection of database objects is the (View).FALSE, TableFALSE, SchemaFALSE, AliasTRUE30s
- Q7A (table) is populated invoked using SELECT statement. Its data/record can be derive from other tables.FALSE, SchemaFALSE, ViewFALSE, AliasTRUE30s
- Q8A key use used to connect the secondary table to the PRIMARY table.PrimaryUniqueIndexForeign30s
- Q9A foreign key option which refuses to update or delete a record from the parent table if there are records in the child table.Set NullCascadeRestrict
Refuse
30s - Q10A foreign key option that updates or deletes records from the child table automatically when updating or deleting a record from the parent table.CascadeSet NullNo ActionRestrict30s
- Q11SELECT relation_name FROM attribute1 WHERE attribute1 = "x" can be a (valid) SELECT query statement.FALSE, not validTRUE30s
- Q12If you are going to upload data from an excel file to your MySQL database table, what function in MySQL would you use?
Designer
ExportImport
Browse
30s - Q13
A dashed, asterisk, percent sign, brackets in SQL are what characters?
Relational
LogicalArithmetic
Wildcard30s - Q14As a database designer, your Project Manager asked you to create an SQL which will join three tables that will show only the record of a specific person. What type of join is appropriate?cross joinleft joininner joinright join30s
- Q15Between the relation customer with an attribute of customer_ID (primary key) and relation account with an attribute of customer_ID (unique key) where should be the reference key be located?accountaccount.customer_IDcustomer.customer_IDcustomer30s