Answer:: C. D. E. F
Answer:: C. D. E. F
Answer:: C. D. E. F
FOR customers whose income level has a value, you want to display the first name and due amount
as 5% of their credit limit. Customers whose due amount is null should not be displayed.
Which query should be used?
A. SELECT cust_first_name, cust_credit_limit * . 05 AS DUE AMOUNT
FROM customers
WHERE cust income_level !=NULL
AND cust credit_level !=NULL;
B. SELECT cust_first_name, cust_credit_limit * . 05 AS DUE AMOUNT
FROM customers
WHERE cust income_level IS NOT NULL
AND due_amount IS NOT NULL;
C. SELECT cust_first_name, cust_credit_limit * . 05 AS DUE AMOUNT
FROM customers
WHERE cust income_level <> NULL
AND due_amount <> NULL;
D. SELECT cust_first_name, cust_credit_limit * . 05 AS DUE AMOUNT
FROM customers
WHERE cust_income_level IS NOT NULL
AND cust_credit_limit IS NOT NULL;
E. SELECT cust_first_name, cust_credit_limit * . 05 AS DUE AMOUNT
FROM customers
WHERE cust income_level !=NULL
AND due_amount !=NULL;
Answer: D
5
IT Certification Guaranteed, The Easy Way!
E. Their metadata and actual data are both stored outside the database.
Answer: B,C
NO.16 Which three statements are true about GLOBAL TEMPORARY TABLES?
A. A GLOBAL TEMPORARY TABLE cannot have PUBLIC SYNONYM.
B. A GLOBAL TEMPORARY TABLE can have multiple indexes
C. A GLOBAL TEMPORARY TABLE can be referenced in the defining query of a view.
D. Data Manipulation Language (DML) on GLOBAL TEMPORARY TABLES generates no REDO.
E. A GLOBAL TEMPORARY TABLE can have only one index.
F. A trigger can be created on a GLOBAL TEMPORARY TABLE
Answer: B,C,F
6
IT Certification Guaranteed, The Easy Way!
NO.18 Which three statements are true about Data Manipulation Language (DML)?
A. delete statements can remove multiple rows based on multiple conditions.
B. insert statements can insert nulls explicitly into a column.
C. insert into. . .select. . .from statements automatically commit.
D. DML statements require a primary key be defined on a table.
E. update statements can have different subqueries to specify the values for each updated column.
Answer: A,B,E