Answer:
netPay module(hourlyRate, numHours, withholdPercent)
Calculate hourlyRate x numHours and set result to variable grossPay
Calculate grossPay x withholdPercent and set result to variable deduction
Calculate grossPay - deduction and set result to variable netPay
print netPay
function end
Explanation:
Pseudocode is a high level description of a program. The pseudocode is written in a plain language to enable people easier to read and understand the program logic. The pseudocode is language independent. This means the same program logic presented in the pseudocode can be implemented using various languages.