Hi Every one...........I have been selected for the SBI
Clerk. But i m one month Pregnanat. So anyone please
suggest me, is they take any objection on my joining .
Answers were Sorted based on User's Feedback
Answer / subham verma
Firstly i congrats 2 u ....
you can easily join it and after 6 months you can easily
take leave from bank.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / arti
Hi, Preeti,in case you are getting selected ,the next step is medical checkup which is the must,the bank says.The selected candidate after the date of selection have to be in probation period for 6months from the date of joining.So,if it does not clashes with your DOD(Date of Delivery)then you are safe.
| Is This Answer Correct ? | 0 Yes | 2 No |
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
What are the main characteristics of c language describe the structure of ac program?
In c programming language, how many parameters can be passed to a function ?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
Is null valid for pointers to functions?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
What are the storage classes in C?
c program to subtract between two numbers without using '-' sign and subtract function.
WHAT IS MEANT BY LIFE?
Explain About fork()?
Explain what are the standard predefined macros?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?