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
Why is sizeof () an operator and not a function?
Difference between exit() and _exit() function?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Do you know the purpose of 'register' keyword?
Explain the concept and use of type void.
What do the functions atoi(), itoa() and gcvt() do?
What is the difference between new and malloc functions?
Where in memory are my variables stored?
Place the #include statement must be written in the program?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Apart from dennis ritchie who the other person who contributed in design of c language.
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is calloc()?
Can a pointer be volatile in c?