Quiz 6 L1-L4
Quiz 6 L1-L4
1. You can logically relate data from multiple tables using ___________.
(1) Points
unique keys
data values
check constraints
Correct
________________________________________
(1) Points
True (*)
False
Correct
________________________________________
3. A foreign key value must match an existing primary key value otherwise, it must be null.
(1) Points
True (*)
False
Correct
________________________________________
DML
DDL (*)
TCL
DCL
Correct
________________________________________
5. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
Correct
6. To see all the fields and records in the employees table you can run the following query :
(1) Points
Correct
________________________________________
7. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
Application Builder
Packed Apps
Utilities
Correct
________________________________________
(1) Points
Check email.
Create documents
Edit photogrphs
Correct
________________________________________
9. A collection of DML statements that form a logical unit of work is called a ______________.
(1) Points
transaction (*)
statement
command
block
Correct
________________________________________
10. The command that always removes all rows from a table, leaving the table empty and the table
structure intact is ...
TRUNCATE (*)
DELETE
Both
None
Correct
(1) Points
UPDATE
DELETE
COMMIT (*)
INSERT
Correct
________________________________________
(1) Points
True (*)
False
Correct
________________________________________
13. If a table already contains rows when a column is added, the new column is initially null or takes
the default value for all the rows. True or False?
(1) Points
True (*)
False
Correct
________________________________________
14. You use the __________ option to mark one or more columns as unused.
(1) Points
DELETE
MARK UNUSED
TRUNCATE
Correct
________________________________________
15. When you define a table, you can specify that a column should be given a default value by using
the LITERAL option.
(1) Points
True
False (*)
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
1. The stages of SQL processing are Parsing, Optimization, Row Source Generation and
_____________ .
(1) Points
Analyzing
Execution (*)
Display
Correct
2. You can logically relate data from multiple tables using ___________.
(1) Points
data values
check constraints
unique keys
Correct
(1) Points
True (*)
False
Correct
4. Structured Query Language (SQL) is the set-based, declarative language used to access data in an
Oracle database.
(1) Points
True (*)
False
Correct
5. The UPDATE statement modifies the values of a specific row or rows if the _______ clause is
specified.
MODIFY
WHERE
SET (*)
VALUE
Correct
Page 1 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
6. The TRUNCATE statement is a data definition language (DDL) statement and generates no rollback
information.
(1) Points
True (*)
False
Correct
7. Any column that is not listed explicitly obtains a null value in the new row unless we have
_________ values for the missing columns that are used.
(1) Points
BEGINNING
INSERT
STANDARD
DEFAULT (*)
Correct
8. The _________ clause in a query comes immediately after the SELECT and FROM.
(1) Points
ORDER BY
GROUP BY
IF
WHERE (*)
Correct
9. Oracle Application Express is an application platform used to share and learn _____ and
__________.
(1) Points
SQL, Java
Java, PL/SQL
Correct
10. In the APEX application a ______ is a collection of logical structures of data. A _______ is owned
by a database user and has the same name as that user.
(1) Points
schema (*)
table
file
entity
Correct
Page 2 of 3
11. In the SQL Commands option of APEX, you can run more than one SQL command at a time.
(1) Points
True
False (*)
Correct
(1) Points
True (*)
False
Correct
13. Table names and column names must begin with a number and should be 1–30 characters long.
(1) Points
True
False (*)
Correct
14. You use the __________ option to mark one or more columns as unused.
(1) Points
DELETE
SET UNUSED (*)
MARK UNUSED
TRUNCATE
Correct
15. Columns without the NOT NULL constraint can contain null values by default.
(1) Points
True (*)
False
Correct
Page 3 of 3
1. You can logically relate data from multiple tables using ___________.
(1) Points
unique keys
data values
check constraints
Correct
________________________________________
(1) Points
True (*)
False
Correct
________________________________________
3. A foreign key value must match an existing primary key value otherwise, it must be null.
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
DML
DDL (*)
TCL
DCL
Correct
________________________________________
5. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
Correct
6. To see all the fields and records in the employees table you can run the following query :
Correct
________________________________________
7. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
(1) Points
Application Builder
Packed Apps
Utilities
Correct
________________________________________
(1) Points
Check email.
Create documents
Edit photogrphs
Correct
________________________________________
9. A collection of DML statements that form a logical unit of work is called a ______________.
Mark for Review
(1) Points
transaction (*)
statement
command
block
Correct
________________________________________
10. The command that always removes all rows from a table, leaving the table empty and the table
structure intact is ...
(1) Points
TRUNCATE (*)
DELETE
Both
None
Correct
(1) Points
UPDATE
DELETE
COMMIT (*)
INSERT
Correct
________________________________________
True (*)
False
Correct
________________________________________
13. If a table already contains rows when a column is added, the new column is initially null or takes
the default value for all the rows. True or False?
(1) Points
True (*)
False
Correct
________________________________________
14. You use the __________ option to mark one or more columns as unused.
(1) Points
DELETE
MARK UNUSED
TRUNCATE
Correct
________________________________________
15. When you define a table, you can specify that a column should be given a default value by using
the LITERAL option.
(1) Points
True
False (*)
Correct
1. The UPDATE statement modifies the values of a specific row or rows if the _______ clause is
specified.
(1) Points
WHERE (*)
VALUE
MODIFY
SET
________________________________________
(1) Points
Correct
________________________________________
3. You can delete a row that contains a primary key that is used as a foreign key in another table.
(1) Points
True
False (*)
4. To issue a CREATE TABLE statement, you must have the __________ privilege.
(1) Points
DISTRIBUTE TABLE
Both
None
Correct
________________________________________
(1) Points
True
False (*)
6. Columns without the NOT NULL constraint can contain null values by default.
(1) Points
True (*)
False
________________________________________
(1) Points
True (*)
False
Correct
________________________________________
8. To use a computer application you must understand how it is built and how it works inside.
(1) Points
True
False (*)
________________________________________
9. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
Correct
________________________________________
10. To see all the fields and records in the employees table you can run the following query :
(1) Points
11. In APEX SQL Workshop and Object Browser options you can view table layouts.
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
Correct
________________________________________
13. All of the following are tools to access a relational database except :
(1) Points
SQL * Plus
________________________________________
Execution
Parsing
Optimization
Correct
________________________________________
15. A primary key must contain a value and the value must be _______.
(1) Points
unique (*)
blank
null
Correct
1. The UPDATE statement modifies the values of a specific row or rows if the _______ clause is
specified.
(1) Points
VALUE
MODIFY
WHERE (*)
SET
Correct
________________________________________
2. The command that always removes all rows from a table, leaving the table empty and the table
structure intact is ...
Mark for Review
(1) Points
TRUNCATE (*)
DELETE
Both
None
Correct
________________________________________
(1) Points
UPDATE
DELETE
COMMIT (*)
INSERT
Correct
________________________________________
(1) Points
entity
flat file
table (*)
database
Correct
________________________________________
Execution
Parsing
Optimization
Correct
6. A __________ can be found at the intersection of a row and column and contains one value.
(1) Points
table
entity
instance
field (*)
________________________________________
7. Structured Query Language (SQL) is the set-based, declarative language used to access data in an
Oracle database.
(1) Points
True (*)
False
Correct
________________________________________
8. To use a computer application you must understand how it is built and how it works inside.
True
False (*)
________________________________________
9. The _________ clause in a query comes immediately after the SELECT and FROM.
(1) Points
ORDER BY
GROUP BY
WHERE (*)
IF
Correct
________________________________________
10. In APEX SQL Workshop and Object Browser options you can view table layouts.
(1) Points
True (*)
False
Correct
11. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
(1) Points
Packed Apps
Application Builder
Correct
________________________________________
12. Table names and column names must begin with a number and should be 1–30 characters long.
(1) Points
True
False (*)
Correct
________________________________________
13. When altering a table, you can decrease the width of a column if …
(Choose 3)
(1) Points
The decrease in column width is not less than the existing values in that column(*)
________________________________________
14. To issue a CREATE TABLE statement, you must have the __________ privilege.
(1) Points
DISTRIBUTE TABLE
Both
None
Correct
________________________________________
15. You use the __________ option to mark one or more columns as unused.
(1) Points
DELETE
MARK UNUSED
TRUNCATE
1. To see all the fields and records in the employees table you can run the following query :
(1) Points
Correct
________________________________________
2. In a basic query, following the word FROM comes the fields to be displayed.
(1) Points
True
False (*)
________________________________________
3. You can use Application Express (APEX) for ...
(1) Points
Developing and expanding your skills with Oracle database, SQL and PL/SQL
Gaining access to SQL and PL/SQL examples shared by the Oracle developer community
Correct
________________________________________
4. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
________________________________________
(1) Points
COMMIT (*)
DELETE
UPDATE
INSERT
Correct
6. When issuing a SQL DELETE command all rows in the table are deleted if you omit the __________
clause.
(1) Points
SELECT
IF
WHEN
WHERE (*)
Correct
________________________________________
7. A collection of DML statements that form a logical unit of work is called a ______________.
(1) Points
command
block
transaction (*)
statement
________________________________________
(1) Points
SQL * Plus
Correct
________________________________________
9. A table is the basic storage structure of an RDBMS.
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
TCL
DML (*)
DCL
DDL
Correct
11. The stages of SQL processing are Parsing, Optimization, Row Source Generation and
_____________ .
(1) Points
Analyzing
Execution (*)
Display
________________________________________
12. Table names and column names must begin with a number and should be 1–30 characters long.
True
False (*)
Correct
________________________________________
13. The Data Definition Language performs all of the following except :
(1) Points
Create tables
Alter tables
________________________________________
14. Columns without the NOT NULL constraint can contain null values by default.
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
Correct
(1) Points
Correct
________________________________________
2. The TRUNCATE statement is a data definition language (DDL) statement and generates no rollback
information.
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
INSERT
DELETE
UPDATE
COMMIT (*)
Correct
________________________________________
4. In APEX SQL Workshop and Object Browser options you can view table layouts.
(1) Points
True (*)
False
Correct
________________________________________
5. Oracle Application Express is an application platform used to share and learn _____ and
__________.
(1) Points
SQL, Java
Java, PL/SQL
(1) Points
Developing and expanding your skills with Oracle database, SQL and PL/SQL
Gaining access to SQL and PL/SQL examples shared by the Oracle developer community
Correct
________________________________________
7. To see selected records from a table we will need to add a ___________ clause to the query.
FROM
ORDER BY
WHERE (*)
IF
Correct
________________________________________
8. DDL means :
(1) Points
Correct
________________________________________
9. If a table already contains rows when a column is added, the new column is initially null or takes
the default value for all the rows. True or False?
(1) Points
True (*)
False
Correct
________________________________________
True (*)
False
Correct
(1) Points
True
False (*)
Correct
________________________________________
(1) Points
database
flat file
table (*)
entity
Correct
________________________________________
13. The stages of SQL processing are Parsing, Optimization, Row Source Generation and
_____________ .
(1) Points
Analyzing
Execution (*)
Display
None of the above are stages of SQL processing.
Correct
________________________________________
14. A foreign key value must match an existing primary key value otherwise, it must be null.
(1) Points
True (*)
False
Correct
________________________________________
15. To connect to an Oracle database you need to use a client program. True or False?
(1) Points
True (*)
False
Correct
1. Table names and column names must begin with a number and should be 1–30 characters long.
(1) Points
True
False (*)
Correct
________________________________________
(Choose 3)
The decrease in column width is not less than the existing values in that column(*)
Correct
________________________________________
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
True
False (*)
Correct
________________________________________
5. A foreign key value must match an existing primary key value otherwise, it must be null.
(1) Points
True (*)
False
Correct
6. A primary key must contain a value and the value must be _______.
(1) Points
null
unique (*)
blank
Correct
________________________________________
(1) Points
SQL * Plus
Correct
________________________________________
(1) Points
Execution
Parsing
Optimization
________________________________________
9. The _________ clause in a query comes immediately after the SELECT and FROM.
(1) Points
IF
ORDER BY
GROUP BY
WHERE (*)
Correct
________________________________________
10. To use a computer application you must understand how it is built and how it works inside.
(1) Points
True
False (*)
Correct
11. In APEX SQL Workshop and Object Browser options you can view table layouts.
(1) Points
True (*)
False
Correct
________________________________________
12. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
Correct
________________________________________
13. A collection of DML statements that form a logical unit of work is called a ______________.
(1) Points
command
statement
transaction (*)
block
Correct
________________________________________
(1) Points
UPDATE
DELETE
INSERT
COMMIT (*)
Correct
________________________________________
(1) Points
Correct
(1) Points
Execution
Parsing
Optimization
Correct
________________________________________
2. Structured Query Language (SQL) is the set-based, declarative language used to access data in an
Oracle database.
(1) Points
True (*)
False
Correct
________________________________________
3. A __________ can be found at the intersection of a row and column and contains one value.
(1) Points
field (*)
instance
entity
table
Correct
________________________________________
4. A primary key must contain a value and the value must be _______.
(1) Points
unique (*)
blank
null
Correct
________________________________________
5. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
Correct
6. You can upload and save a SQL Script from the _____________ option.
(1) Points
Utilities
RESTful Services
SQL Scripts (*)
Object Browser
SQL Commands
Correct
________________________________________
7. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
(1) Points
Application Builder
Utilities
Packed Apps
Correct
________________________________________
8. In a basic query, following the word FROM comes the fields to be displayed.
(1) Points
True
False (*)
Correct
________________________________________
(1) Points
Create tables
________________________________________
10. If a table already contains rows when a column is added, the new column is initially null or takes
the default value for all the rows. True or False?
(1) Points
True (*)
False
Correct
11. You can name a constraint or the Oracle server generates a name by using the SYS_Cn format.
(1) Points
True (*)
False
Correct
________________________________________
12. When you define a table, you can specify that a column should be given a default value by using
the LITERAL option.
(1) Points
True
False (*)
________________________________________
13. The command that always removes all rows from a table, leaving the table empty and the table
structure intact is ...
TRUNCATE (*)
DELETE
Both
None
Correct
________________________________________
(1) Points
INSERT
UPDATE
DELETE
COMMIT (*)
Correct
________________________________________
(1) Points
(1) Points
It alters the DEPT_TEST table to add a composite primary key comprising of the DEPT_ID and
DEPARTMENT_NAME.
It alters the DEPT_TEST table to add a the DEPT_ID and DEPARTMENT_NAME columns.
It alters the DEPT_TEST table to add a composite foreign key comprising of the DEPT_ID and
DEPARTMENT_NAME.
It alters the DEPT_TEST table to add a composite unique key comprising of the DEPT_ID and
DEPARTMENT_NAME. (*)
________________________________________
2. Table names and column names must begin with a number and should be 1–30 characters long.
(1) Points
True
False (*)
Correct
________________________________________
3. When you define a table, you can specify that a column should be given a default value by using
the LITERAL option.
(1) Points
True
False (*)
Correct
________________________________________
4. Which constratint specifies that the column (or combination of column) must contain unique
value AND IS NOT NULL for all rows?
UNIQUE KEY
NOT NULL
CHECK
________________________________________
5. The stages of SQL processing are Parsing, Optimization, Row Source Generation and
_____________ .
(1) Points
Analyzing
Execution (*)
Display
Correct
(1) Points
SQL * Plus
Correct
________________________________________
7. A primary key must contain a value and the value must be _______.
null
blank
unique (*)
Correct
________________________________________
8. You can logically relate data from multiple tables using ___________.
(1) Points
check constraints
data values
unique keys
Correct
________________________________________
9. You can upload and save a SQL Script from the _____________ option.
(1) Points
Object Browser
SQL Commands
Utilities
RESTful Services
Correct
________________________________________
10. The _________ clause in a query comes immediately after the SELECT and FROM.
ORDER BY
GROUP BY
WHERE (*)
IF
Correct
11. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
(1) Points
Utilities
Application Builder
Packed Apps
Correct
________________________________________
12. In a basic query, following the word FROM comes the fields to be displayed.
(1) Points
True
False (*)
Correct
________________________________________
13. The TRUNCATE statement is a data definition language (DDL) statement and generates no
rollback information.
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
DELETE
INSERT
COMMIT (*)
UPDATE
Correct
________________________________________
15. Any column that is not listed explicitly obtains a null value in the new row unless we have
_________ values for the missing columns that are used.
(1) Points
INSERT
STANDARD
DEFAULT (*)
BEGINNING
Correct
1. In the SQL Workshop/SQL Commands ___________ tab you can view and retrieve previously run
queries.
(1) Points
Results
Describe
Saved SQL
History (*)
Explain
________________________________________
2. To see all the fields and records in the employees table you can run the following query :
(1) Points
Correct
________________________________________
3. You can upload and save a SQL Script from the _____________ option.
(1) Points
Object Browser
RESTful Services
Utilities
SQL Commands
Correct
________________________________________
4. In APEX SQL Workshop and Object Browser options you can view table layouts.
(1) Points
True (*)
False
Correct
________________________________________
5. The TRUNCATE statement is a data definition language (DDL) statement and generates no rollback
information.
(1) Points
True (*)
False
Correct
6. When issuing a SQL DELETE command all rows in the table are deleted if you omit the __________
clause.
(1) Points
SELECT
WHEN
WHERE (*)
IF
Correct
________________________________________
7. The command that always removes all rows from a table, leaving the table empty and the table
structure intact is ...
(1) Points
TRUNCATE (*)
DELETE
Both
None
Correct
________________________________________
8. A primary key must contain a value and the value must be _______.
(1) Points
null
blank
unique (*)
Correct
________________________________________
(1) Points
SQL * Plus
Correct
________________________________________
(1) Points
table (*)
entity
database
flat file
Correct
11. To connect to an Oracle database you need to use a client program. True or False?
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
True
False (*)
Correct
________________________________________
13. Columns without the NOT NULL constraint can contain null values by default.
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
It alters the DEPT_TEST table to add a the DEPT_ID and DEPARTMENT_NAME columns.
It alters the DEPT_TEST table to add a composite unique key comprising of the DEPT_ID and
DEPARTMENT_NAME. (*)
It alters the DEPT_TEST table to add a composite foreign key comprising of the DEPT_ID and
DEPARTMENT_NAME.
It alters the DEPT_TEST table to add a composite primary key comprising of the DEPT_ID and
DEPARTMENT_NAME.
Correct
________________________________________
15. Table names and column names must begin with a number and should be 1–30 characters long.
(1) Points
True
False (*)
Correct
(1) Points
Developing and expanding your skills with Oracle database, SQL and PL/SQL
Gaining access to SQL and PL/SQL examples shared by the Oracle developer community
Correct
________________________________________
2. To see all the fields and records in the employees table you can run the following query :
(1) Points
Correct
________________________________________
3. In the SQL Workshop/SQL Commands ___________ tab you can view and retrieve previously run
queries.
(1) Points
Explain
Saved SQL
Results
Describe
History (*)
Correct
________________________________________
4. In the APEX application a ______ is a collection of logical structures of data. A _______ is owned
by a database user and has the same name as that user.
(1) Points
schema (*)
table
entity
file
________________________________________
ERD software
Spreadsheet software
Correct
(1) Points
True (*)
False
Correct
________________________________________
7. To connect to an Oracle database you need to use a client program. True or False?
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
Execution
Parsing
Optimization
All of the above options are stages of SQL processing. (*)
Correct
________________________________________
(1) Points
COMMIT (*)
DELETE
UPDATE
INSERT
Correct
________________________________________
10. The UPDATE statement modifies the values of a specific row or rows if the _______ clause is
specified.
(1) Points
MODIFY
SET
VALUE
WHERE (*)
Correct
(1) Points
Correct
________________________________________
12. When you define a table, you can specify that a column should be given a default value by using
the LITERAL option.
(1) Points
True
False (*)
Correct
________________________________________
13. Columns without the NOT NULL constraint can contain null values by default.
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
Unique
Check
Primary Key
________________________________________
(1) Points
True
False (*)
Correct
1. In the SQL Workshop/SQL Commands ___________ tab you can view and retrieve previously run
queries.
(1) Points
History (*)
Explain
Describe
Results
Saved SQL
Correct
________________________________________
2. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
(1) Points
Packed Apps
Utilities
Application Builder
Correct
________________________________________
3. To see selected records from a table we will need to add a ___________ clause to the query.
FROM
ORDER BY
WHERE (*)
IF
Correct
________________________________________
(1) Points
Developing and expanding your skills with Oracle database, SQL and PL/SQL
Gaining access to SQL and PL/SQL examples shared by the Oracle developer community
Correct
________________________________________
(1) Points
INSERT
DELETE
COMMIT (*)
UPDATE
Correct
6. The UPDATE statement modifies the values of a specific row or rows if the _______ clause is
specified.
Mark for Review
(1) Points
SET
VALUE
WHERE (*)
MODIFY
Correct
________________________________________
7. Any column that is not listed explicitly obtains a null value in the new row unless we have
_________ values for the missing columns that are used.
(1) Points
BEGINNING
INSERT
DEFAULT (*)
STANDARD
Correct
________________________________________
(1) Points
Table name
Field names
________________________________________
9. Table names and column names must begin with a number and should be 1–30 characters long.
Mark for Review
(1) Points
True
False (*)
Correct
________________________________________
10. When you _______ a table, the database loses all the data in the table.
(1) Points
ERASE
DROP (*)
SELECT
ALTER
Correct
(1) Points
Correct
________________________________________
(1) Points
table (*)
entity
database
flat file
Correct
________________________________________
13. The stages of SQL processing are Parsing, Optimization, Row Source Generation and
_____________ .
(1) Points
Analyzing
Execution (*)
Display
Correct
________________________________________
14. You can logically relate data from multiple tables using ___________.
(1) Points
check constraints
data values
unique keys
Correct
________________________________________
15. All of the following are tools to access a relational database except :
(1) Points
Oracle SQL Data Modeler (*)
SQL * Plus
Correct
(1) Points
Spreadsheet software
ERD software
Correct
________________________________________
(1) Points
SQL * Plus
Correct
________________________________________
3. Structured Query Language (SQL) is the set-based, declarative language used to access data in an
Oracle database.
(1) Points
True (*)
False
Correct
________________________________________
4. The stages of SQL processing are Parsing, Optimization, Row Source Generation and
_____________ .
(1) Points
Analyzing
Execution (*)
Display
Correct
________________________________________
(1) Points
True
False (*)
Correct
6. You use the __________ option to mark one or more columns as unused.
(1) Points
TRUNCATE
DELETE
MARK UNUSED
Correct
________________________________________
(1) Points
It alters the DEPT_TEST table to add a the DEPT_ID and DEPARTMENT_NAME columns.
It alters the DEPT_TEST table to add a composite primary key comprising of the DEPT_ID and
DEPARTMENT_NAME.
It alters the DEPT_TEST table to add a composite unique key comprising of the DEPT_ID and
DEPARTMENT_NAME. (*)
It alters the DEPT_TEST table to add a composite foreign key comprising of the DEPT_ID and
DEPARTMENT_NAME.
Correct
________________________________________
(Choose 3)
(1) Points
The decrease in column width is not less than the existing values in that column(*)
Correct
________________________________________
9. Any column that is not listed explicitly obtains a null value in the new row unless we have
_________ values for the missing columns that are used.
DEFAULT (*)
STANDARD
INSERT
BEGINNING
Correct
________________________________________
10. The TRUNCATE statement is a data definition language (DDL) statement and generates no
rollback information.
(1) Points
True (*)
False
Correct
11. The command that always removes all rows from a table, leaving the table empty and the table
structure intact is ...
(1) Points
TRUNCATE (*)
DELETE
Both
None
Correct
________________________________________
12. In the SQL Workshop/SQL Commands ___________ tab you can view and retrieve previously run
queries.
(1) Points
Results
Explain
Saved SQL
History (*)
Describe
Correct
________________________________________
13. In the SQL Commands option of APEX, you can run more than one SQL command at a time.
(1) Points
True
False (*)
________________________________________
14. In a basic query, following the word FROM comes the fields to be displayed.
(1) Points
True
False (*)
Correct
________________________________________
15. In APEX SQL Workshop and Object Browser options you can view table layouts.
(1) Points
True (*)
False
Correct
1. Columns without the NOT NULL constraint can contain null values by default.
(1) Points
True (*)
False
Correct
________________________________________
(Choose 3)
(1) Points
The decrease in column width is not less than the existing values in that column(*)
Correct
________________________________________
3. Once you have created a table, you can use the ________________ command to confirm that it
was created. (Choose 2)
(1) Points
SELECT(*)
DESCRIBE(*)
LIST
ORDER BY
________________________________________
(1) Points
Check
Unique
Primary Key
Correct
________________________________________
5. The TRUNCATE statement is a data definition language (DDL) statement and generates no rollback
information.
(1) Points
True (*)
False
Correct
(1) Points
Correct
________________________________________
7. A collection of DML statements that form a logical unit of work is called a ______________.
block
statement
command
transaction (*)
Correct
________________________________________
8. To use a computer application you must understand how it is built and how it works inside.
(1) Points
True
False (*)
Correct
________________________________________
9. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
Correct
________________________________________
10. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
(1) Points
Packed Apps
Utilities
Application Builder
Correct
1. In a basic query, following the word FROM comes the fields to be displayed.
(1) Points
True
False (*)
Correct
________________________________________
12. Which software is used to manage reading and manipulating a relational database ?
(1) Points
ERD software
Spreadsheet software
Correct
________________________________________
13. A __________ can be found at the intersection of a row and column and contains one value.
(1) Points
entity
table
field (*)
instance
Correct
________________________________________
14. The stages of SQL processing are Parsing, Optimization, Row Source Generation and
_____________ .
(1) Points
Analyzing
Execution (*)
Display
Correct
________________________________________
15. To connect to an Oracle database you need to use a client program. True or False?
(1) Points
True (*)
False
Correct
1. In a basic query, following the word FROM comes the fields to be displayed.
(1) Points
True
False (*)
Correct
________________________________________
2. You can upload and save a SQL Script from the _____________ option.
Mark for Review
(1) Points
Object Browser
SQL Commands
Utilities
RESTful Services
Correct
________________________________________
3. Oracle Application Express is an application platform used to share and learn _____ and
__________.
(1) Points
SQL, Java
Java, PL/SQL
Correct
________________________________________
4. To see all the fields and records in the employees table you can run the following query :
(1) Points
Correct
________________________________________
(1) Points
Execution
Parsing
Optimization
Correct
6. The stages of SQL processing are Parsing, Optimization, Row Source Generation and
_____________ .
(1) Points
Analyzing
Execution (*)
Display
Correct
________________________________________
7. To connect to an Oracle database you need to use a client program. True or False?
(1) Points
True (*)
False
Correct
________________________________________
8. All of the following are tools to access a relational database except :
(1) Points
SQL * Plus
Correct
________________________________________
(Choose 3)
(1) Points
The decrease in column width is not less than the existing values in that column(*)
Correct
________________________________________
10. The Data Definition Language performs all of the following except :
(1) Points
Alter tables
Create tables
Correct
11. Constraints ensure the consistency and integrity of the database.
(1) Points
True (*)
False
Correct
________________________________________
12. When you _______ a table, the database loses all the data in the table.
(1) Points
DROP (*)
SELECT
ALTER
ERASE
Correct
________________________________________
13. The UPDATE statement modifies the values of a specific row or rows if the _______ clause is
specified.
(1) Points
MODIFY
VALUE
WHERE (*)
SET
Correct
________________________________________
14. The command that always removes all rows from a table, leaving the table empty and the table
structure intact is ...
TRUNCATE (*)
DELETE
Both
None
Correct
________________________________________
(1) Points
Correct
1. A __________ can be found at the intersection of a row and column and contains one value.
(1) Points
table
instance
field (*)
entity
Correct
________________________________________
SQL * Plus
Correct
________________________________________
3. To connect to an Oracle database you need to use a client program. True or False?
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
flat file
database
table (*)
entity
Correct
________________________________________
(1) Points
Correct
6. The command that always removes all rows from a table, leaving the table empty and the table
structure intact is ...
(1) Points
TRUNCATE (*)
DELETE
Both
None
Correct
________________________________________
7. The UPDATE statement modifies the values of a specific row or rows if the _______ clause is
specified.
(1) Points
MODIFY
WHERE (*)
SET
VALUE
Correct
________________________________________
8. When you define a table, you can specify that a column should be given a default value by using
the LITERAL option.
(1) Points
True
False (*)
Correct
________________________________________
9. If a table already contains rows when a column is added, the new column is initially null or takes
the default value for all the rows. True or False?
(1) Points
True (*)
False
Correct
________________________________________
(1) Points
Check
Primary Key
Unique
Correct
1. To issue a CREATE TABLE statement, you must have the __________ privilege.
(1) Points
DISTRIBUTE TABLE
Both
None
Correct
________________________________________
12. In the SQL Workshop/SQL Commands ___________ tab you can view and retrieve previously run
queries.
(1) Points
Explain
History (*)
Results
Saved SQL
Describe
Correct
________________________________________
13. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
Correct
________________________________________
14. To use a computer application you must understand how it is built and how it works inside.
(1) Points
True
False (*)
Correct
________________________________________
15. Application programs enable us to ________.
(1) Points
Check email.
Create documents
Edit photogrphs
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
1. The TRUNCATE statement is a data definition language (DDL) statement and generates no rollback
information.
(1) Points
True (*)
False
Correct
2. The UPDATE statement modifies the values of a specific row or rows if the _______ clause is
specified.
(1) Points
MODIFY
VALUE
SET
WHERE (*)
3. A collection of DML statements that form a logical unit of work is called a ______________.
(1) Points
command
block
statement
transaction (*)
(1) Points
SQL * Plus
5. A __________ can be found at the intersection of a row and column and contains one value.
(1) Points
instance
table
entity
field (*)
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
6. Structured Query Language (SQL) is the set-based, declarative language used to access data in an
Oracle database.
(1) Points
True (*)
False
Correct
(1) Points
Execution
Parsing
Optimization
Correct
8. Table names and column names must begin with a number and should be 1–30 characters long.
(1) Points
True
False (*)
Correct
9. DDL means :
(1) Points
Correct
10. The Data Definition Language performs all of the following except :
(1) Points
Create tables
Alter tables
Page 2 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
11. You can name a constraint or the Oracle server generates a name by using the SYS_Cn format.
(1) Points
True (*)
False
Correct
12. To see all the fields and records in the employees table you can run the following query :
(1) Points
Correct
13. Oracle Application Express is an application platform used to share and learn _____ and
__________.
(1) Points
Java, PL/SQL
SQL, Java
Correct
14. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
(1) Points
Application Builder
Utilities
Packed Apps
Correct
15. In a basic query, following the word FROM comes the fields to be displayed.
Mark for Review
(1) Points
True
False (*)
Page 3 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
1. When you have constraints in place on columns, an error is returned if you try to violate the
constraint rule.
(1) Points
True (*)
False
Correct
2. When issuing a SQL DELETE command all rows in the table are deleted if you omit the __________
clause.
(1) Points
IF
SELECT
WHEN
WHERE (*)
(1) Points
True (*)
False
Correct
4. Structured Query Language (SQL) is the set-based, declarative language used to access data in an
Oracle database.
(1) Points
True (*)
False
Correct
5. You can logically relate data from multiple tables using ___________.
(1) Points
unique keys
data values
check constraints
Correct
Page 1 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
(1) Points
TCL
DML (*)
DDL
DCL
Correct
(1) Points
True (*)
False
Correct
8. When you _______ a table, the database loses all the data in the table.
(1) Points
DROP (*)
ALTER
SELECT
ERASE
Correct
9. Table names and column names must begin with a number and should be 1–30 characters long.
(1) Points
True
False (*)
Correct
10. To issue a CREATE TABLE statement, you must have the __________ privilege.
(1) Points
DISTRIBUTE TABLE
Both
None
Correct
Page 2 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
11. If a table already contains rows when a column is added, the new column is initially null or takes
the default value for all the rows. True or False?
(1) Points
True (*)
False
Correct
(1) Points
Developing and expanding your skills with Oracle database, SQL and PL/SQL
Gaining access to SQL and PL/SQL examples shared by the Oracle developer community
13. In APEX SQL Workshop and Object Browser options you can view table layouts.
(1) Points
True (*)
False
Correct
14. In the SQL Workshop/SQL Commands ___________ tab you can view and retrieve previously run
queries.
(1) Points
Results
Describe
History (*)
Explain
Saved SQL
Correct
15. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
(1) Points
Application Builder
Packed Apps
Utilities
Correct
Page 3 of 3
1. A collection of DML statements that form a logical unit of work is called a ______________.
(1) Points
transaction (*)
command
statement
block
Correct
2. The TRUNCATE statement is a data definition language (DDL) statement and generates no rollback
information.
(1) Points
True (*)
False
Correct
(1) Points
DELETE
COMMIT (*)
UPDATE
INSERT
4. In the SQL Commands option of APEX, you can run more than one SQL command at a time.
Mark for Review
(1) Points
True
False (*)
Correct
5. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
Correct
Page 1 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
6. In the APEX application a ______ is a collection of logical structures of data. A _______ is owned
by a database user and has the same name as that user.
(1) Points
schema (*)
file
table
entity
Correct
7. In a basic query, following the word FROM comes the fields to be displayed.
(1) Points
True
False (*)
Correct
8. Which constratint specifies that the column (or combination of column) must contain unique
value AND IS NOT NULL for all rows?
(1) Points
CHECK
UNIQUE KEY
NOT NULL
Correct
9. DDL means :
(1) Points
Correct
10. Table names and column names must begin with a number and should be 1–30 characters long.
(1) Points
True
False (*)
Correct
Page 2 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
11. You can name a constraint or the Oracle server generates a name by using the SYS_Cn format.
(1) Points
True (*)
False
Correct
12. To connect to an Oracle database you need to use a client program. True or False?
(1) Points
True (*)
False
Correct
(1) Points
Correct
(1) Points
DML (*)
TCL
DDL
DCL
Correct
15. The stages of SQL processing are Parsing, Optimization, Row Source Generation and
_____________ .
(1) Points
Analyzing
Execution (*)
Display
Page 3 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
1. Any column that is not listed explicitly obtains a null value in the new row unless we have
_________ values for the missing columns that are used.
DEFAULT (*)
STANDARD
BEGINNING
INSERT
Correct
2. When you have constraints in place on columns, an error is returned if you try to violate the
constraint rule.
(1) Points
True (*)
False
Correct
3. It is not mandatory to specify the column list in the INSERT statement. True or False?
(1) Points
True (*)
False
Correct
(1) Points
True (*)
False
Correct
5. When you define a table, you can specify that a column should be given a default value by using
the LITERAL option.
True
False (*)
Page 1 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
6. When you _______ a table, the database loses all the data in the table.
(1) Points
DROP (*)
SELECT
ALTER
ERASE
Correct
7. DDL means :
(1) Points
Correct
Correct
(1) Points
Execution
Parsing
Optimization
(1) Points
True (*)
False
Correct
Page 2 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
(1) Points
True (*)
False
Correct
12. In the SQL Workshop/SQL Commands ___________ tab you can view and retrieve previously run
queries.
(1) Points
History (*)
Explain
Saved SQL
Results
Describe
Correct
13. In APEX SQL Workshop and Object Browser options you can view table layouts.
(1) Points
True (*)
False
Correct
14. In a basic query, following the word FROM comes the fields to be displayed.
(1) Points
True
False (*)
Correct
(1) Points
Developing and expanding your skills with Oracle database, SQL and PL/SQL
Gaining access to SQL and PL/SQL examples shared by the Oracle developer community
Correct
Page 3 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
1. The command that always removes all rows from a table, leaving the table empty and the table
structure intact is ...
(1) Points
TRUNCATE (*)
DELETE
Both
None
Correct
2. When issuing a SQL DELETE command all rows in the table are deleted if you omit the __________
clause.
(1) Points
SELECT
IF
WHERE (*)
WHEN
Correct
3. Any column that is not listed explicitly obtains a null value in the new row unless we have
_________ values for the missing columns that are used.
(1) Points
INSERT
STANDARD
DEFAULT (*)
BEGINNING
Correct
(1) Points
DDL (*)
DML
DCL
TCL
Correct
(1) Points
True (*)
False
Correct
Page 1 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
(1) Points
ERD software
Spreadsheet software
Correct
7. To connect to an Oracle database you need to use a client program. True or False?
(1) Points
True (*)
False
Correct
8. In a basic query, following the word FROM comes the fields to be displayed.
(1) Points
True
False (*)
Correct
9. To use a computer application you must understand how it is built and how it works inside.
Mark for Review
(1) Points
True
False (*)
Correct
10. You can upload and save a SQL Script from the _____________ option.
(1) Points
SQL Commands
RESTful Services
Utilities
Object Browser
Correct
Page 2 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
11. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
None of the above.
Correct
12. When you _______ a table, the database loses all the data in the table.
(1) Points
SELECT
ERASE
DROP (*)
ALTER
Correct
13. You can name a constraint or the Oracle server generates a name by using the SYS_Cn format.
(1) Points
True (*)
False
Correct
14. When altering a table, you can decrease the width of a column if …
(Choose 3)
(1) Points
(*)
The decrease in column width is not less than the existing values in that column
(*)
(*)
(1) Points
Correct
Page 3 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
(1) Points
DML
DCL
DDL (*)
TCL
Correct
(1) Points
ERD software
Correct
(1) Points
Execution
Parsing
Optimization
Correct
(1) Points
TCL
DML (*)
DCL
DDL
Correct
(1) Points
Alter tables
Create tables
Page 1 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
(1) Points
It alters the DEPT_TEST table to add a composite primary key comprising of the DEPT_ID and
DEPARTMENT_NAME.
It alters the DEPT_TEST table to add a composite foreign key comprising of the DEPT_ID and
DEPARTMENT_NAME.
It alters the DEPT_TEST table to add a composite unique key comprising of the DEPT_ID and
DEPARTMENT_NAME. (*)
It alters the DEPT_TEST table to add a the DEPT_ID and DEPARTMENT_NAME columns.
Correct
7. Which constratint specifies that the column (or combination of column) must contain unique
value AND IS NOT NULL for all rows?
(1) Points
UNIQUE KEY
NOT NULL
CHECK
Correct
(1) Points
Check
Primary Key
Unique
Correct
(1) Points
INSERT
UPDATE
DELETE
COMMIT (*)
Correct
10. A collection of DML statements that form a logical unit of work is called a ______________.
(1) Points
block
statement
command
transaction (*)
Correct
Page 2 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
Section 6 Quiz 1 L1-L4
11. Any column that is not listed explicitly obtains a null value in the new row unless we have
_________ values for the missing columns that are used.
(1) Points
BEGINNING
DEFAULT (*)
STANDARD
INSERT
Correct
12. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
(1) Points
Utilities
Application Builder
Packed Apps
Correct
13. To see selected records from a table we will need to add a ___________ clause to the query.
(1) Points
FROM
ORDER BY
WHERE (*)
IF
Correct
14. To see all the fields and records in the employees table you can run the following query :
(1) Points
Correct
15. In the SQL Workshop/SQL Commands ___________ tab you can view and retrieve previously run
queries.
(1) Points
History (*)
Results
Explain
Saved SQL
Describe
Correct
Page 3 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
1. In APEX SQL Workshop and Object Browser options you can view table layouts.
(1) Points
True (*)
False
Correct
2. In a basic query, following the word FROM comes the fields to be displayed.
(1) Points
True
False (*)
Correct
3. In the SQL Commands option of APEX, you can run more than one SQL command at a time.
(1) Points
True
False (*)
Correct
4. SQL Commands can be entered and run from the ________________ option within the APEX
Application.
(1) Points
Application Builder
Packed Apps
Utilities
Correct
5. You can logically relate data from multiple tables using ___________.
(1) Points
unique keys
data values
check constraints
Correct
Page 1 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
6. A primary key must contain a value and the value must be _______.
(1) Points
null
blank
unique (*)
Correct
(1) Points
Correct
8. Structured Query Language (SQL) is the set-based, declarative language used to access data in an
Oracle database.
Mark for Review
(1) Points
True (*)
False
Correct
(1) Points
It alters the DEPT_TEST table to add a composite foreign key comprising of the DEPT_ID and
DEPARTMENT_NAME.
It alters the DEPT_TEST table to add a composite unique key comprising of the DEPT_ID and
DEPARTMENT_NAME. (*)
It alters the DEPT_TEST table to add a composite primary key comprising of the DEPT_ID and
DEPARTMENT_NAME.
It alters the DEPT_TEST table to add a the DEPT_ID and DEPARTMENT_NAME columns.
Correct
(1) Points
True (*)
False
Correct
Page 2 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
Section 6 Quiz 1 L1-L4
11. To create a table you must identify all of the following except :
(1) Points
Table name
Field names
Correct
(1) Points
True
False (*)
Correct
13. The UPDATE statement modifies the values of a specific row or rows if the _______ clause is
specified.
(1) Points
VALUE
MODIFY
SET
WHERE (*)
Correct
DELETE
COMMIT (*)
INSERT
UPDATE
Correct
15. You can delete a row that contains a primary key that is used as a foreign key in another table.
(1) Points
True
False (*)
Correct
Page 3 of 3
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.
(1) Points
Developing and expanding your skills with Oracle database, SQL and PL/SQL
Gaining access to SQL and PL/SQL examples shared by the Oracle developer community
Correct
Check email.
Create documents
Edit photogrphs
Correct
3. You can upload and save a SQL Script from the _____________ option.
(1) Points
Utilities
SQL Commands
RESTful Services
Object Browser
Correct
4. In APEX SQL Workshop and Object Browser options you can view table layouts.
(1) Points
True (*)
False
Correct
5. Once you have created a table, you can use the ________________ command to confirm that it
was created. (Choose 2)
(1) Points
SELECT
(*)
ORDER BY
LIST
DESCRIBE
(*)
Correct
Page 1 of 3