Oracle 1z0-071 Exam Practice Questions (P. 3)
- Full Access (272 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #11
Which three are true about scalar subquery expressions? (Choose three.)
- AThey can be nested.
- BThey cannot be used in the VALUES clause of an INSERT statement.Most Voted
- CA scalar subquery expression that returns zero rows evaluates to zero.
- DThey can be used as default values for columns in a CREATE TABLE statement.
- EA scalar subquery expression that returns zero rows evaluates to NULL.Most Voted
- FThey cannot be used in GROUP BY clauses.Most Voted
Correct Answer:
AEF
Reference:
https://docs.oracle.com/cd/B12037_01/server.101/b10759/expressions010.htm
AEF
Reference:
https://docs.oracle.com/cd/B12037_01/server.101/b10759/expressions010.htm
send
light_mode
delete
Question #12
Examine this query:

Which two methods should you use to prevent prompting for a hire date value when this query is executed? (Choose two.)

Which two methods should you use to prevent prompting for a hire date value when this query is executed? (Choose two.)
- AUse the DEFINE command before executing the query.Most Voted
- BReplace '&1' with '&&1' in the query.
- CUse the UNDEFINE command before executing the query.
- DExecute the SET VERIFY OFF command before executing the query.
- EExecute the SET VERIFY ON command before executing the query.
- FStore the query in a script and pass the substitution value to the script when executing it.Most Voted
Correct Answer:
AF
AF
send
light_mode
delete
Question #13
You need to allow user ANDREW to:
1. Modify the TITLE and ADDRESS columns of your CUSTOMERS table.
2. GRANT that permission to other users.
Which statement will do this?
1. Modify the TITLE and ADDRESS columns of your CUSTOMERS table.
2. GRANT that permission to other users.
Which statement will do this?
- AGRANT UPDATE ON customers.title, customers.address TO andrew;
- BGRANT UPDATE (title, address) ON customers TO andrew;
- CGRANT UPDATE (title, address) ON customers TO andrew WITH GRANT OPTION;
- DGRANT UPDATE ON customers.title, customers.address TO andrew WITH ADMIN OPTION;
- EGRANT UPDATE ON customers.title, customers.address TO andrew WITH GRANT OPTION;
- FGRANT UPDATE (title, address) ON customers TO andrew WITH ADMIN OPTION;
Correct Answer:
C
C

Indeed, option C is your best choice for allowing Andrew both to modify the TITLE and ADDRESS columns of the CUSTOMERS table and to extend that permission to others. The key here is 'WITH GRANT OPTION' included in the GRANT statement. This specific clause empowers Andrew not only to update specified fields but also to pass along those same privileges, ensuring he can fulfill both requirements laid out in your scenario.
send
light_mode
delete
Question #14
You own table DEPARTMENTS, referenced by views, indexes, and synonyms.
Examine this command which executes successfully:
DROP TABLE departments PURGE;
Which three statements are true? (Choose three.)
Examine this command which executes successfully:
DROP TABLE departments PURGE;
Which three statements are true? (Choose three.)
- AIt will remove the DEPARTMENTS table from the database.Most Voted
- BIt will drop all indexes on the DEPARTMENTS table.Most Voted
- CIt will remove all views that are based on the DEPARTMENTS table.
- DIt will remove all synonyms for the DEPARTMENTS table.
- ENeither can it be rolled back nor can the DEPARTMENTS table be recovered.Most Voted
- FIt will delete all rows from the DEPARTMENTS table, but retain the empty table.
Correct Answer:
ABE
Reference:
https://docs.oracle.com/cd/B28359_01/server.111/b28310/tables010.htm#ADMIN01505
ABE
Reference:
https://docs.oracle.com/cd/B28359_01/server.111/b28310/tables010.htm#ADMIN01505
send
light_mode
delete
Question #15
Which three statements are true about Structured Query Language (SQL)? (Choose three.)
- AIt requires that data be contained in hierarchical data storage.
- BIt best supports relational databases.
- CIt provides independence for logical data structures being manipulated from the underlying physical data storage.
- DIt is the only language that can be used for both relational and object-oriented databases.
- EIt guarantees atomicity, consistency, isolation, and durability (ACID) features.
- FIt is used to define encapsulation and polymorphism for a relational table.
Correct Answer:
BCE
BCE

SQL is inherently designed to facilitate interaction with relational databases, making it a prime language in that environment. It provides some level of independence from the physical data storage, allowing users to manage the data without manipulating its actual storage structurally. It also ensures that any transaction it handles adheres to the ACID properties, crucial for maintaining database integrity and reliability during operations. This combination of features underscores its suitability and robustness for managing relational databases effectively.
send
light_mode
delete
All Pages