You are on page 1of 4

CS101 Assignment # 4

ID : mc100201146
Name: M muzamal Khawar

Write an algorithm in pseudo code form for the following problem and also draw a
Flow chart for the same problem statement (5+5)

There is a multinational company. In the company, there are deductions from the salary
of the employee according to following rules:
i) If salary is less than 10,000 then no tax deduction and 4% of salary will be deducted as
Well-fare fund every month.
ii) If salary is more than 10,000 and less than 20,000 then 3% of salary as tax deduction
and 6% of remaining salary as employee well-fare fund will be deducted every month.

iii) If salary is equal to or more than 20,000 then 5 % of the salary as tax deduction and
8% of remaining salary as employee well-fare fund will be deducted every month .

Take salary input from user and after appropriate deduction show the net payable amount
for month.
Using Loop structure calculate the total salary; paid tax and well fare fund of that
particular employee for two years and display these values at end
Solution

Pseudo Code Algorithm


One Cheating reference : http://groups.google.com/group/VU-Study-
Corner/browse_thread/thread/62169349dfdb9074/efcc140b463cf6f4?
lnk=raot

Salary = “A”
Tax deduction = “B”
Welfare fun = “C”

Repeat the tenure for 24 months.

If

{ A < 10,000 then B = 0 and C = 4% of A


Or 10,000 < A < 20,000 then B = 3% of A and C = 6% of (A – B)
Or A > 20,000 then B = 5% of A & C = 8% of (A – B) }

Repeat

Hence

Salary after 2 years

Tax Deduction after 2 years

Welfare fund deduction after 2 years


Solution Part 2

Flow Chart

You might also like