OCP CBT Question 499

Please solve the following question.

Examine the following SQL statement:

sqlSELECT employee_id, salary, commission_pct, CASE WHEN commission_pct IS NOT NULL THEN salary * commission_pct ELSE salary * 0.05 END AS calculated_bonusFROM employees;Which statement is true regarding the execution of this SQL query?