Write a conditional that multiplies the value assigned to pay by one-and-a-half if worked_overtime contains the value true.
a) if (worked_overtime == true) pay *= 1.5;
b) if (worked_overtime) pay *= 1.5;
c) if (pay == worked_overtime) pay *= 1.5;
d) if (pay == true) pay *= 1.5;