Answer:
Here is the pseudocode.
a.
INPUT hourly rate
INPUT hours worked
SET gross pay = hourly rate x hours worked
PRINT gross pay
b.
INPUT hourly rate
INPUT hours worked
SET gross pay = hourly rate x hours worked
PRINT gross pay
INPUT tax rate
SET net pay = gross pay - (gross pay * tax rate / 100)
PRINT net pay
Explanation:
a.
Ask the user to enter hourly rate and hours worked
Calculate the gross pay, multiply hourly rate by hours worked
Print the gross pay
b.
Ask the user to enter hourly rate and hours worked
Calculate the gross pay, multiply hourly rate by hours worked
Print the gross pay
Ask the user to enter the tax rate
Calculate the net pay as gross pay - (gross pay * tax rate / 100)
Print the net pay