Oracle
1Z0-071 · Question #375
Examine the data in the EMPLOYEES table. Which statement will compute the total annual compensation for each employee?
The correct answer is A. SELECT last_name, (monthly_salary * 12) + (monthly_salary * 12 * monthly_commission_pct) AS. See the full explanation below for the reasoning.
Question
Examine the data in the EMPLOYEES table. Which statement will compute the total annual compensation for each employee?
Exhibit
Options
- ASELECT last_name, (monthly_salary * 12) + (monthly_salary * 12 * monthly_commission_pct) AS
- BSELECT last_name, (monthly_salary + monthly_commission_pct) * 12 AS
- CSELECT last_name, (monthly_salary * 12) + (monthly_commission_pct * 12) AS annual_comp
- DSELECT last_name, (monthly_salary * 12) + (monthly_salary * 12 * NVL
How the community answered
(67 responses)- A82% (55)
- B4% (3)
- C10% (7)
- D3% (2)
Community Discussion
No community discussion yet for this question.
