Database Programming Section 13 Quiz
Database Programming Section 13 Quiz
Database Programming Section 13 Quiz
Section 13 Quiz
(Answer all questions in this section)
False (*)
Brackets { }
Parentheses ( )
6. The BLOB datatype can max hold 128 Terabytes of data. True or
False? Mark for Review
(1) Points
True (*)
False
NCHAR
CHAR
CLOB (*)
VARCHAR2 (*)
8. A table has a column: RESPONSE_TIME. This is used to store
the difference between the time the problem was reported and the
time the problem was resolved. Data in the RESPONSE_TIME
column needs to be stored in days, hours, minutes and seconds.
Which data type should you use? Mark for Review
(1) Points
DATETIME
TIMESTAMP
DATE
DATETIME
TIMESTAMP (*)
10. To store large amounts of text you should simply create a series
of VARCHAR2 columns in a table. True or False? Mark for Review
(1) Points
True
False (*)
(Answer all questions in this section)
11. Which statement about creating a table is true? Mark for Review
(1) Points
False
What will be the result in the hire_date column following this insert
statement:
Statement will fail, as you must list the columns into which you are
inserting.
Statement will work and the hire_date column will have the value of
the date when the statement was run. (*)
1NUMBER
NUMBER
NUMBER_1$ (*)
1_NUMBER#
15. Which SQL statement below will correctly create the EMP table
based on the structure of the EMPLOYEES table? Include only the
EMPLOYEE_ID, FIRST_NAME, LAST_NAME, SALARY, and
DEPARTMENT_ID columns. Mark for Review
(1) Points