nerdexam
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

1Z0-071 question #375 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)
  • A
    82% (55)
  • B
    4% (3)
  • C
    10% (7)
  • D
    3% (2)

Community Discussion

No community discussion yet for this question.

Full 1Z0-071 Practice