write a pseudo code and then draw a flowchart to calculate tax deduction of employess salary >2000, tax is 7% and salary <2000, tax is 4%

2 answers

Hmmmm.
enter salary
if salary greater than 2000, then go to high
go to low
end
High:
tax deduction=salary * .07
end
Low:
tax decuction= salary*.04
??? You write in FORTRAN II or something?
Ever hear of if-then-else ?

Plus, the problem is poorly worded. What to do if salary = 2000?