WAP to accept basic salary of an employee?
Calculate it HRA=25%,DA=30%,PF=30%&net salary display all
contents?
Answer Posted / sanjay
IF UR BASIC SALARY 5000 RS.
HRA=B*25/100;
HRA=1250;
DA=BS*30/100;
DA=1500;
PF=BS*30/100;
PF=1500;
NET SALARY=HRA+DA+PF+BS;
NET SALARY=1250+1500+1500+5000;
NET SALARY= 9250 RS.
THIS IS MY CORRECT ANSWER
| Is This Answer Correct ? | 27 Yes | 17 No |
Post New Answer View All Answers
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What does c mean in standard form?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Is there any possibility to create customized header file with c programming language?
By using C language input a date into it and if it is right?
What is static volatile in c?
How do you override a defined macro?
What is the stack in c?
Why is extern used in c?
How can I do peek and poke in c?
Explain what are binary trees?
What does s c mean in text?
What is the need of structure in c?
why do some people write if(0 == x) instead of if(x == 0)?
How do you print an address?