Final answer:
The correct SQL query to calculate and select each employee's bonus amount is the one that multiplies the annual salary by the bonus percentage and filters the joined tables based on matching employee IDs.
Step-by-step explanation:
To determine the amount of each employee's bonus, which is the calculation of salary times bonus percentage, the correct SQL query must select the employee's name and the bonus calculation. Therefore, the appropriate SQL query is:
SELECT e.first_name, e.last_name, b.annual_salary * b.bonus_pct
FROM employees e, bonus b
WHERE e.employee_id = b.employee_id;
This query will produce a result set with the first name, last name, and the calculated bonus amount for each employee.