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
Who is the founder of c language?
How are structure passing and returning implemented?
How can a string be converted to a number?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Write a code of a general series where the next element is the sum of last k terms.
Is it possible to use curly brackets ({}) to enclose single line code in c program?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
Give me the code of in-order recursive and non-recursive.
what type of questions arrive in interview over c programming?
write a proram to reverse the string using switch case?
Why shouldn’t I start variable names with underscores?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
Tell me what is the purpose of 'register' keyword in c language?
What is the purpose of ftell?