though sbi was nationalized why its not comes under
nationalized banks and its comes under publicsector banks
Answer Posted / sukhpreet singh
sbi & its subsidiaries have theri diff act which is SBI(subsidiary banks)Act 1955
| Is This Answer Correct ? | 4 Yes | 9 No |
Post New Answer View All Answers
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Write the syntax and purpose of a switch statement in C.
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
program for reversing a selected line word by word when multiple lines are given without using strrev
What is #line used for?
Explain what is the difference between a free-standing and a hosted environment?
What does c value mean?
How many levels deep can include files be nested?
What is the purpose of sprintf?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Explain what are reserved words?
When should I declare a function?
What are structure types in C?
When is a “switch” statement preferable over an “if” statement?
Explain how do you determine the length of a string value that was stored in a variable?