though sbi was nationalized why its not comes under
nationalized banks and its comes under publicsector banks
Answer Posted / raju
1000's of jobs are in public and private sector banks so sbi was publicsector banks
| Is This Answer Correct ? | 2 Yes | 25 No |
Post New Answer View All Answers
Explain what is the difference between a free-standing and a hosted environment?
What are the 3 types of structures?
What is the use of getch ()?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What are header files and explain what are its uses in c programming?
When should volatile modifier be used?
What do you mean by scope of a variable in c?
What is structure in c language?
What is difference between union All statement and Union?
Explain what does the format %10.2 mean when included in a printf statement?
Can a function argument have default value?
What is p in text message?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the use of pointers in C?
What is static memory allocation? Explain