Oracle Database 11g SQL Fundamentals I

Here you have the best Oracle 1z0-051 practice exam questions

  • You have 290 total questions to study from
  • Each page has 5 questions, making a total of 58 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on October 26, 2025
  • This site is not affiliated with or endorsed by Oracle.
Question 1 of 290
Evaluate the SQL statement:
TRUNCATE TABLE DEPT;
Which three are true about the SQL statement? (Choose three.)
    Correct Answer: A, D, F

Question 2 of 290
Here is the structure and data of the CUST_TRANS table:
Exhibit:

CUST_TRANS -
Name Null? Type
-------------- ----------------- ------------------
CUSTNO NOT NULL CHAR (2)
TRANSDATE DATE
TRANSAMT NUMBER (6, 2)
CUSTNO TRANSDATE TRANSAMT
------------- ----------------------- -----------------------
11 01-JAN-07 1000
22 01-FEB-07 2000
33 01-MAR-07 3000
Dates are stored in the default date format dd-mm-rr in the CUST_TRANS table.
Which three SQL statements would execute successfully? (Choose three.)
    Correct Answer: A, C, D

Question 3 of 290
View the Exhibit and examine the structure of the CUSTOMERS table:
Exam 1z0-051: Question 3 - Image 1
Using the CUSTOMERS table, you need to generate a report that shows the average credit limit for customers in WASHINGTON and NEW YORK.
Which SQL statement would produce the required result?
    Correct Answer: C

Question 4 of 290
Evaluate these two SQL statements:
SELECT last_name, salary, hire_date FROM EMPLOYEES ORDER BY salary DESC;
SELECT last_name, salary, hire_date FROM EMPLOYEES ORDER BY 2 DESC;
What is true about them?
    Correct Answer: A

Question 5 of 290
Where can sub queries be used? (Choose all that apply)
    Correct Answer: A, B, C, F