declare ename varchar2(15); basic number; da number; hra number; pf number; netsalary number; begin ename:=’&ename’; basic:=&basic; da:=basic * (30/100); hra:=basic * (10/100); if (basic < 8000) then pf:=basic * (8/100); elsif (basic >= 8000 and basic <= 16000) then pf:=basic * (10/100); end if; netsalary:=basic + da + …
Read moreHow is net salary calculated in SQL?
declare ename varchar2(15); basic number; da number; hra number; pf number; netsalary number; begin ename:=’&ename’; basic:=&basic; da:=basic * (30/100); hra:=basic * (10/100); if (basic < 8000) then pf:=basic * (8/100); elsif (basic >= 8000 and basic <= 16000) then pf:=basic * (10/100); end if; netsalary:=basic + da + …
Read moreWhat is salary in C?
C Developer salary in India with less than 1 year of experience to 11 years ranges from ₹ 1.9 Lakhs to ₹ 15.2 Lakhs with an average annual salary of ₹ 5.1 Lakhs based on 58 salaries.
Read moreHow do you write a program to calculate gross pay?
C Program to calculate gross salary of a person.
Read moreWhat is the salary of an employee?
A salaried employee is a worker who is paid a fixed amount of money or compensation (also known as a salary) by an employer . For example, a salaried employee might earn $50,000 per year. Learn about what being a salaried employee entails, its pros and cons, and the difference between salaried and hourly employees.
Read moreHow is overtime calculated C++?
overtime = hours – 40 ; weeklywage = 40 * wage + overtime * 1.5 * wage; If there is no overtime, simply multiply the worked hours with the wage.
Read more