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 |
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What does c mean before a date?
I need testPalindrome and removeSpace #include <stdio.h> #define SIZE 256 /* function prototype */ /* test if the chars in the range of [left, right] of array is a palindrome */ int testPalindrome( char array[], int left, int right ); /* remove the space in the src array and copy it over to the "copy" array */ /* set the number of chars in the "copy" array to the location that cnt points t */ void removeSpace(char src[], char copy[], int *cnt); int main( void ) { char c; /* temporarily holds keyboard input */ char string[ SIZE ]; /* original string */ char copy[ SIZE ]; /* copy of string without spaces */ int count = 0; /* length of string */ int copyCount; /* length of copy */ printf( "Enter a sentence:\n" ); /* get sentence to test from user */ while ( ( c = getchar() ) != '\n' && count < SIZE ) { string[ count++ ] = c; } /* end while */ string[ count ] = '\0'; /* terminate string */ /* make a copy of string without spaces */ removeSpace(string, copy, ©Count); /* print whether or not the sentence is a palindrome */ if ( testPalindrome( copy, 0, copyCount - 1 ) ) { printf( "\"%s\" is a palindrome\n", string ); } /* end if */ else { printf( "\"%s\" is not a palindrome\n", string ); } /* end else */ return 0; /* indicate successful termination */ } /* end main */ void removeSpace(char src[], char copy[], int *cnt) { } int testPalindrome( char array[], int left, int right ) { }
Explain the meaning of keyword 'extern' in a function declaration.
What is derived datatype in c?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
What is c programming structure?
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
write a progrmm in c language take user interface generate table using for loop?
why you will give me a job in TCS.