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)