write a python program calculating an employee's salary including 10% DA and 10% HRA
Answers
Answer:
DA = 25% of Basic, HRA = 15% of Basic, PF = 12% of Basic, TA = 7.50% of Basic.
Answer:
If he worked for 50 hours in a week then he will get the overtime pay for the extra hours he worked i.e. he will be paid 1.5 times of Rs. 100 for 10 hours (50-40). if worked_hours > 40 then: total gross pay = (hourly_wage *40) + (1.5 * hourly_wage * (worked_hours-40))
If he worked for 50 hours in a week then he will get the overtime pay for the extra hours he worked i.e. he will be paid 1.5 times of Rs. 100 for 10 hours (50-40). if worked_hours > 40 then: total gross pay = (hourly_wage *40) + (1.5 * hourly_wage * (worked_hours-40))Explanation:
If he worked for 50 hours in a week then he will get the overtime pay for the extra hours he worked i.e. he will be paid 1.5 times of Rs. 100 for 10 hours (50-40). if worked_hours > 40 then: total gross pay = (hourly_wage *40) + (1.5 * hourly_wage * (worked_hours-40))Explanation:hope it will help you