120k views
5 votes
A company announces revised Dearness Allowance (DA) and Special Allowances(SA) for their employees as per the tariff given below:BasicDearnessSpecialAllowance (DA)Allowance (SA)Up to 10,00010%5%* 10,001 - 20,00012%8%*20,001 - 30,00015%10%* 30,001 and above20%12%Write a program to accept the name and Basic Salary (BS) of an employee.Calculate and display gross salary.Gross Salary = Basic + Dearness Allowance + Special AllowanceDisplay the information in the given format:Name BasicDASpl. AllowanceGross SalaryXXXXXXXXXXXXXXX​

User Hexinpeter
by
7.8k points

1 Answer

0 votes

Final answer:

To calculate the gross salary, add the Basic Salary (BS), Dearness Allowance (DA), and Special Allowance (SA) together. A Basic Salary of 15,000 with a 12% DA and 8% SA would result in a gross salary of 18,000. Use a programming language to store and print the employee's information in the desired format.

Step-by-step explanation:

Gross Salary Calculation:

To calculate the gross salary, you need to add the Basic Salary (BS), Dearness Allowance (DA), and Special Allowance (SA) together.

Let's assume the Basic Salary is 15,000. Based on the given tariff, the DA would be 12% of the Basic Salary (12% of 15,000 = 1,800), and the SA would be 8% of the Basic Salary (8% of 15,000 = 1,200).

To calculate the gross salary, add the Basic Salary, DA, and SA together (15,000 + 1,800 + 1,200 = 18,000). So, the gross salary would be 18,000.

Displaying Information:

To display the information in the given format, you can use a programming language to store the employee's name, Basic Salary, DA, SA, and Gross Salary as variables, and then print them out in the desired format.

For example:

name = "John Doe"
BasicSalary = 15000
DA = 1800
SA = 1200
GrossSalary = 18000

print("Name ", name)
print("Basic ", BasicSalary)
print("DA ", DA)
print("Spl. Allowance ", SA)
print("Gross Salary ", GrossSalary)
User Kmak
by
7.7k points