though sbi was nationalized why its not comes under
nationalized banks and its comes under publicsector banks
Answers were Sorted based on User's Feedback
Answer / sumit
sbi is almost wholly owned by rbi while other psb's are wholly owned by government of india thus it doesn't comes under nationalised bank.
| Is This Answer Correct ? | 3 Yes | 5 No |
Answer / sukhpreet singh
sbi & its subsidiaries have theri diff act which is SBI(subsidiary banks)Act 1955
| Is This Answer Correct ? | 4 Yes | 9 No |
Answer / 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 |
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
i have a written test in tomorrow
biggest of two no's with out using if condition statement
. Write a program to get a string and to convert the 1st letter of it to uppercase
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Which built-in library function can be used to match a patter from the string?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
What is meant by 'bit masking'?
Why is void main used?