Skip to main content

Advance Tax/Self Assesment Tax and Interest u/s 234B and 234C


Read more about Tax filing @ http://tips4ufromsony.blogspot.com/2011/07/income-tax-process-and-e-filing.html .

If you are a salaried person there is tax deduction at source (TDS), which takes care of the tax payments for your salary. At the same time, there will be additional liabilities for income like interest on deposits, bonds and even capital gains which might require you to pay Advance Tax. Advance tax has to be paid in several installments in September, December and March. Self-assessment tax is the difference between the tax paid and the tax payable.You can figure out the self-assessment tax amount when you make the final income tax calculation. There is no specific date for paying this tax but it has to be done before you file your income tax return so that no further amount of tax remains to be paid.

While computing advance tax, income-tax on the current income has to be first determined and the tax on such income has to be determined. As per section 208, advance tax shall be payable in every case where the amount of tax payable by the assessee during that year is in excess of Rs. 5,000. As per section 211, advance tax is payable by companies in four instalments and by non-corporate assessees in three instalments. In cases of corporate assessees, advance tax is payable as under:

Due date of instalment Amount payable
On or before 15/6 Not less than 15%
On or before 15/9 Not less than 45%
On or before 15/12 Not less than 75%
On or before 15/3 The whole amount or 100%

If an assessee fails to pay the amount as above or if the amount paid falls short of the amount payable as under, he would be liable to interest @ 1% p.m. for a period of 3 months with respect to the first three instalments and for one month for the fourth instalment.

In the case of a non-corporate assessees, advance tax is payable in three instalments as given below:

Due date of instalment Amount payable
On or before 15/9 Not less than 30%
On or before 15/12 Not less than 60%
On or before 15/3 The whole amount or 100%

If an assessee either fails to pay the whole of advance tax or where the advance tax paid by him is less than 90% of the assessed tax, he shall be liable to interest @ 1% per month (@ 1.25% up to 7-9-2003) or part of the month from the 1st April of the assessment year to the date of determination of total income u/s. 143(1) and where regular assessment is made, to the date of such regular assessment. No interest is payable if the advance tax paid is 90% or more of the assessed tax.

Find more @ http://www.vipca.net/interest-defaults-payement-advancetax-interest-payable.php

Comments

Popular posts from this blog

ATG Product Catalog schema ER diagram

Check out the O rder schema ER-Diagram @   http://tips4ufromsony.blogspot.in/2012/02/atg-order-schema-er-diagram.html Check out the User Profile  schema ER-Diagram @ http://tips4ufromsony.blogspot.in/2012/03/atg-user-profile-schema-er-diagram.html If you would like to know the relationship between different Product Catalog tables, please find below screen shots of  Product Catalog schema ER Diagrams.

Useful windows shortcut keys

Following are the most useful set of windows shortcut keys that I would like to share with you. run commands calc        -->  Calculator  mspaint   -->  To get Paint textpad   -->  To get Textpad if installed cmd        -->  Opens a new Command Window (cmd.exe)  control    -->  Displays Control Panel  msconfig   -->  Configuration to edit startup files  compmgmt.msc  -->  Computer management  fsmgmt.msc      -->  Folder Sharing Management  services.msc     -->   System Services  appwiz.cpl  --> Add/Remove Programs  ncpa.cpl     -->  Network Connections  %userprofile%  -->  Opens you User's Profile  %temp%  -->  Opens temporary file Folder  temp ...

Income Tax process and e-filing

http://financeminister.in/income_tax_calculator.php https://incometaxindiaefiling.gov.in Below I am listing the step-by-step activities of the Tax Process that a working professional need to do in a given Financial Year. Here FY refers to Financial Year  and  AY refers to Assesment Year. Each month we will pay the Tax (From APRIL 20xx to MARCH 20xx+1) through our Employer for the FY 20xx – 20xx+1. In the month April 20xx, we will give the investment details to the employer (in our employer specified portal) for the FY 20xx – 20xx+1. In the month January 20xx+1, we will give the investment proof details , Rent receipts… to the Employer Finance Department for the FY 20xx – 20xx+1. In the month MAY/JUNE 20xx+1, employer gives the Form 16 for the FY 20xx – 20xx+1 to us (The proof given by the employer to the employee for the tax paid by the employee). In the month July 20xx+1 (on or before July 31st of every year), we will fill the ITR forms (earlier it was NayaSaral f...

How to simulate Browser back button

When someone asks how to simulate a back button, they really mean to ask how to create a link that points to the previously visited page. Most browsers tend to keep a list of which websites the user has visited and in what order they have done so. The DOM window object provides access to the browser's history through the history object. Moving backward and forward through the user's history is done using the   back(), forward(), and go() methods of the  history  object. To move backward through history, just do window.history.back() ; This will act exactly like the user clicked on the Back button in their browser toolbar. Find below a sample html code: <html> <head> <script type="text/javascript"> function goBack(){  window.history.back() } </script> </head> <body>    <input type="button" value="Back" onclick="goBack()" /> </body> </html>

JBoss - how to take thread dumps

Following are the different options in JBoss to take the thread dump. 1. Using JBoss jmx-console :    Got to http://localhost:8080/jmx-console  and search for the mbean " serverInfo " and click on that link. Click the  invoke mbean operation under listThreaddump() method. This will give you the current snapshot of threads which are running in your JBoss jvm. 2. By using twiddle :   In the commnad promt go to <JBOSS-HOME>/bin and run the command  twiddle.bat invoke "jboss.system:type=ServerInfo" listThreadDump > threadDump.html  and you could find the threadDump.html with the JBoss thread dump. 3. Using "Interrupt" signal :  Use kill -3 <process-id> to generate thread dump. You will find the thread dumps in server logs.