1Z0-051 Premium Bundle

1Z0-051 Premium Bundle

Oracle Database: SQL Fundamentals I Certification Exam

4.5 
(11280 ratings)
0 QuestionsPractice Tests
0 PDFPrint version
May 20, 2024Last update

Oracle 1Z0-051 Free Practice Questions

Q1. - (Topic 1) 

A SELECT statement can be used to perform these three functions: 

Choose rows from a table. 

Choose columns from a table 

Bring together data that is stored in different tables by creating a link between 

them. 

Which set of keywords describes these capabilities? 

A. difference, projection, join 

B. selection, projection, join 

C. selection, intersection, join 

D. intersection, projection, join 

E. difference, projection, product 

Answer:

Explanation: Explanation: choose rows from a table is SELECTION, 

Choose column from a table is PROJECTION 

Bring together data in different table by creating a link between them is JOIN. 

Incorrect Answer: 

Aanswer should have SELECTION, PROJECTION and JOIN. 

Canswer should have SELECTION, PROJECTION and JOIN. 

Danswer should have SELECTION, PROJECTION and JOIN. 

Eanswer should have SELECTION, PROJECTION and JOIN. 

Refer: Introduction to Oracle9i: SQL, Oracle University Study Guide, 1-6 

Q2. - (Topic 1) 

For which action can you use the TO_DATE function? 

A. Convert any date literal to a date 

B. Convert any numeric literal to a date 

C. Convert any character literal to a date 

D. Convert any date to a character literal 

E. Format ’10-JAN-99’ to ‘January 10 1999’ 

Answer:

Q3. - (Topic 2) 

Examine the data in the CUST_NAME column of the CUSTOMERS table. CUST_NAME 

Renske Ladwig Jason Mallin Samuel McCain Allan MCEwen Irene Mikkilineni Julia Nayer 

You need to display customers' second names where the second name starts with "Mc" or "MC." 

Which query gives the required output? 

A. SELECT SUBSTR(cust_name, INSTR(cust_name,' ')+1) 

FROM customers 

WHERE INITCAP(SUBSTR(cust_name, INSTR(cust_name,' ')+1))='Mc' 

B. SELECT SUBSTR(cust_name, INSTR(cust_name,' ')+1) 

FROM customers 

WHERE INITCAP(SUBSTR(cust_name, INSTR(cust_name,' ')+1)) LIKE 'Mc%' 

C. SELECT SUBSTR(cust_name, INSTR(cust_name,' ')+1) 

FROM customers 

WHERE SUBSTR(cust_name, INSTR(cust_name,' ')+1) LIKE INITCAP('MC%'); 

D. SELECT SUBSTR(cust_name, INSTR(cust_name,' ')+1) 

FROM customers 

WHERE INITCAP(SUBSTR(cust_name, INSTR(cust_name,' ')+1)) = INITCAP('MC%'); 

Answer:

Q4. - (Topic 1) 

View the Exhibits and examine the structures of the PRODUCTS SALES and CUSTOMERS tables. 

You need to generate a report that gives details of the customer's last name, name of the product, and the quantity sold for all customers in Tokyo'. Which two queries give the required result? (Choose two.) 

A. 

SELECT c.cust_last_name,p.prod_name, s.quantity_sold FROM sales s JOIN products p 

USING(prod_id) 

JOIN customers c 

USING(cust_id) 

WHERE c.cust_city='Tokyo' 

B. 

SELECT c.cust_last_name, p.prod_name, s.quantity_sold 

FROM products p JOIN sales s JOIN customers c 

ON(p.prod_id=s.prod_id) 

ON(s.cust_id=c.cust_id) 

WHERE c.cust_city='Tokyo' 

C. 

SELECT c.cust_last_name, p.prod_name, s.quantity_sold 

FROM products p JOIN sales s 

ON(p.prod_id=s.prod_id) 

JOIN customers c 

ON(s.cust_id=c.cust_id) 

AND c.cust_city='Tokyo' 

D. 

SELECT c.cust_id,c.cust_last_name,p.prod_id, p.prod_name, s.quantity_sold FROM 

products p JOIN sales s 

USING(prod_id) 

JOIN customers c 

USING(cust_id) 

WHERE c.cust_city='Tokyo' 

Answer: A,C 

Q5. - (Topic 1) 

Which is an iSQL*Plus command? 

A. INSERT 

B. UPDATE 

C. SELECT 

D. DESCRIBE 

E. DELETE 

F. RENAME 

Answer:

Explanation: Explanation: 

The only SQL*Plus command in this list: DESCRIBE. It cannot be used as SQL command. 

This command returns a description of tablename, including all columns in that table, the 

datatype for each column and an indication of whether the column permits storage of NULL 

values. 

Incorrect Answer: 

A INSERT is not a SQL*PLUS command 

B UPDATE is not a SQL*PLUS command 

C SELECT is not a SQL*PLUS command 

E DELETE is not a SQL*PLUS command 

F RENAME is not a SQL*PLUS command 

Refer: Introduction to Oracle9i: SQL, Oracle University Study Guide, 7 

Q6. - (Topic 1) 

See the Exhibit and examine the structure of the CUSTOMERS table: 

Using the CUSTOMERS table, you need to generate a report that shown the average credit limit for customers in WASHINGTON and NEW YORK. 

Which SQL statement would produce the required result? 

A. 

SELECT cust_city, AVG(cust_credit_limit) 

FROM customers 

WHERE cust_city IN ('WASHINGTON','NEW YORK') 

GROUP BY cust_credit_limit, cust_city; 

B. 

SELECT cust_city, AVG(cust_credit_limit) 

FROM customers 

WHERE cust_city IN ('WASHINGTON','NEW YORK') 

GROUP BY cust_city,cust_credit_limit; 

C. 

SELECT cust_city, AVG(cust_credit_limit) 

FROM customers 

WHERE cust_city IN ('WASHINGTON','NEW YORK') 

GROUP BY cust_city; 

D. 

SELECT cust_city, AVG(NVL(cust_credit_limit,0)) 

FROM customers 

WHERE cust_city IN ('WASHINGTON','NEW YORK'); 

Answer:

Explanation: 

Creating Groups of Data: GROUP BY Clause Syntax You can use the GROUP BY clause to divide the rows in a table into groups. You can then use the group functions to return summary information for each group. In the syntax: group_by_expression Specifies the columns whose values determine the basis for grouping rows Guidelines 

If you include a group function in a SELECT clause, you cannot select individual results as well, unless the individual column appears in the GROUP BY clause. You receive an error message if you fail to include the column list in the GROUP BY clause. 

Using a WHERE clause, you can exclude rows before dividing them into groups. 

You must include the columns in the GROUP BY clause. 

You cannot use a column alias in the GROUP BY clause. 

Q7. - (Topic 1) 

Examine the description of the EMP_DETAILS table given below: Exhibit: 

Which two statements are true regarding SQL statements that can be executed on the EMP_DETAIL table? (Choose two.) 

A. An EMP_IMAGE column can be included in the GROUP BY clause 

B. You cannot add a new column to the table with LONG as the data type 

C. An EMP_IMAGE column cannot be included in the ORDER BY clause 

D. You can alter the table to include the NOT NULL constraint on the EMP_IMAGE column 

Answer: B,C 

Explanation: 

LONG Character data in the database character set, up to 2GB. All the functionality of LONG (and more) is provided by CLOB; LONGs should not be used in a modern database, and if your database has any columns of this type they should be converted to CLOB. 

There can only be one LONG column in a table. 

Guidelines 

A LONG column is not copied when a table is created using a subquery. 

A LONG column cannot be included in a GROUP BY or an ORDER BY clause. 

Only one LONG column can be used per table. 

No constraints can be defined on a LONG column. 

You might want to use a CLOB column rather than a LONG column. 

Q8. - (Topic 1) 

Which two statements are true regarding views? (Choose two.) 

A. A sub query that defines a view cannot include the GROUP BY clause 

B. A view is created with the sub query having the DISTINCT keyword can be updated 

C. A Data Manipulation Language (DML) operation can be performed on a view that is created with the sub query having all the NOT NULL columns of a table 

D. A view that is created with the sub query having the pseudo column ROWNUM keyword cannot be updated 

Answer: C,D 

Explanation: 

Rules for Performing DML Operations on a View You cannot add data through a view if the view includes: Group functions A GROUP BY clause The DISTINCT keyword The pseudocolumn ROWNUM keyword Columns defined by expressions NOT NULL columns in the base tables that are not selected by the view 

Q9. - (Topic 1) 

View the Exhibit and examine the data in the PROMOTIONS table. 

You need to display all promo categories that do not have 'discount' in their subcategory. 

Which two SQL statements give the required result? (Choose two.) 

A. 

SELECT promo_category FROM promotions MINUS SELECT promo_category FROM promotions WHERE promo_subcategory = 'discount' 

B. 

SELECT promo_category FROM promotions INTERSECT SELECT promo_category FROM promotions WHERE promo_subcategory = 'discount' 

C. 

SELECT promo_category FROM promotions MINUS SELECT promo_category FROM promotions WHERE promo_subcategory <> 'discount' 

D. 

SELECT promo_category FROM promotions INTERSECT SELECT promo_category FROM promotions WHERE promo_subcategory <> 'discount' 

Answer: A,D 

Q10. - (Topic 2) 

View the Exhibits and examine the structures of the PRODUCTS and SALES tables. Which two SQL statements would give the same output? (Choose two.) 

A. 

SELECT prod_id FROM products INTERSECT SELECT prod_id FROM sales; 

B. 

SELECT prod_id FROM products MINUS SELECT prod_id FROM sales; 

C. 

SELECT DISTINCT p.prod_id FROM products p JOIN sales s ON p.prod_id=s.prod_id; 

D. 

SELECT DISTINCT p.prod_id FROM products p JOIN sales s ON p.prod_id <> s.prod_id; 

Answer: A,C 

START 1Z0-051 EXAM