answersLogoWhite

0

Lets assume you have HRA as a salary component. So the next step is to calculate the taxation aspect of the HRA Component. In order to do this, you need the following:

1. Your Basic Salary

2. The Actual HRA Component in your Salary

3. The Actual Rental paid every month

4. Whether you live in a Metro or a non-metro

Once you have these details, try to calculate the following numbers:

1. If you are in a Metro - take 50% of your Basic salary and if not, take 40% of your Basic Salary

2. The Actual monthly HRA component from your salary

3. The Actual Rent paid - 10% of your Basic Salary

Of these 3 figures whichever is the least is your eligible tax deduction against HRA.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Formula for calculating DA and HRA?

Dearness Allowance (DA) is typically calculated as a percentage of the basic salary, often based on inflation indices. The formula is: DA = (Basic Salary × DA Percentage) / 100. House Rent Allowance (HRA) is generally calculated as a percentage of the basic salary, depending on the city of residence and company policy. The formula is: HRA = (Basic Salary × HRA Percentage) / 100, with common percentages being 40% for non-metro cities and 50% for metro cities.


What is the typical hra percentage?

Lets assume you have HRA as a salary component. So the next step is to calculate the taxation aspect of the HRA Component. In order to do this, you need the following: 1. Your Basic Salary 2. The Actual HRA Component in your Salary 3. The Actual Rental paid every month 4. Whether you live in a Metro or a non-metro Once you have these details, try to calculate the following numbers: 1. If you are in a Metro - take 50% of your Basic salary and if not, take 40% of your Basic Salary 2. The Actual monthly HRA component from your salary 3. The Actual Rent paid - 10% of your Basic Salary Of these 3 figures whichever is the least is your eligible tax deduction against HRA.


How much HRA benefit can be claimed?

Lets assume you have HRA as a salary component. So the next step is to calculate the taxation aspect of the HRA Component. In order to do this, you need the following: 1. Your Basic Salary 2. The Actual HRA Component in your Salary 3. The Actual Rental paid every month 4. Whether you live in a Metro or a non-metro Once you have these details, try to calculate the following numbers: 1. If you are in a Metro - take 50% of your Basic salary and if not, take 40% of your Basic Salary 2. The Actual monthly HRA component from your salary 3. The Actual Rent paid - 10% of your Basic Salary Of these 3 figures whichever is the least is your eligible tax deduction against HRA.


How do you calculate hra from basic salary?

Lets assume you have HRA as a salary component. So the next step is to calculate the taxation aspect of the HRA Component. In order to do this, you need the following: 1. Your Basic Salary 2. The Actual HRA Component in your Salary 3. The Actual Rental paid every month 4. Whether you live in a Metro or a non-metro Once you have these details, try to calculate the following numbers: 1. If you are in a Metro - take 50% of your Basic salary and if not, take 40% of your Basic Salary 2. The Actual monthly HRA component from your salary 3. The Actual Rent paid - 10% of your Basic Salary Of these 3 figures whichever is the least is your eligible tax deduction against HRA.


What is the Net salary of a bank PO?

The Salary bifuRcation of a Bank PO is:Basic Salary:- Rs.14500.00Dearness Allowance: Rs.11636.50 (80.25% of Basic Salary)HRA: 7.5% of Basic (In Major Cities) or 6.5% of Basic (Rest of the places)So it comes to 1) Rs.27224 p.m (7.5% HRA)2) Rs.27079 p.m (6.5% HRA)


How do you calculate the HRA?

Lets assume you have HRA as a salary component. So the next step is to calculate the taxation aspect of the HRA Component. In order to do this, you need the following: 1. Your Basic Salary 2. The Actual HRA Component in your Salary 3. The Actual Rental paid every month 4. Whether you live in a Metro or a non-metro Once you have these details, try to calculate the following numbers: 1. If you are in a Metro - take 50% of your Basic salary and if not, take 40% of your Basic Salary 2. The Actual monthly HRA component from your salary 3. The Actual Rent paid - 10% of your Basic Salary Of these 3 figures whichever is the least is your eligible tax deduction against HRA.


Basic salary 5000 hra 2500 ta 2000 da 1500 total salary 11000 pf deduct basic salary or total salary?

3500


What is the meaning of HRA?

If you live in a Rented House you are eligible for something called House Rent Allowance and this has tax benefits. If you check out your salary packageclosely, the will be something called "HRA" or "House Rent Allowance" that is part of your monthly salary along with other components like Basic Salary,Provident fund etc. If you dont have HRA as part of your salary, you need to discuss with the finance department of your office and make sure to allocate a decent chunk of your salary into the HRA Bucket.


Salary under HRA it encompasses salary component only?

Yes. The HRA Component is also part of your overall salary package


What is the salary of an agricultural officer in oriental bank of commerce?

basic starts with 14500+ 64% da=23500+hra@7%of basic=24500(approax)


How much salary ticket collector?

basic 5850 DA 65%=3802 HRA 20%=1170 EDU =500 GP =1900 TOTAL =13222 Plus PF+runing allowence


Write a program in java to print total salary of an employee?

/* hra=25% of salary * ca=15% of salary * ea=10% of salary * total salary= hra + ca + ea */ import java.io.*; class pay { protected static void main()throws IOException { BufferedReader in=new BufferedReader(new InputStreamReader(System.in)); System.out.print("Enter the salary: "); int sal=Integer.parseInt(in.readLine()); float tsal=sal; if(sal>5000) { float hra,ca,ea; hra=sal/4; ca=(sal*3)/20; ea=sal/10; tsal=sal+hra+ca+ea; } System.out.print("Total Salary= "+tsal); } }