venugopal


{ City } vizag
< Country > india
* Profession * student
User No # 62339
Total Questions Posted # 0
Total Answers Posted # 12

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 62
Users Marked my Answers as Wrong # 24
Questions / { venugopal }
Questions Answers Category Views Company eMail




Answers / { venugopal }

Question { State Bank Of India SBI, 224519 }

which questions will be asked in sbi clerk interview


Answer

hi friends i have asked so many bank employes who have
successfully cracked their interveiws mainly they told
speak boldly what they are asking even they dont observe
whether the candidate tell the answer right or not.

The main questions are:
1.tell us ur self.
2.why do u choose banking as a career where as u have lot
of oppertunities.

note:They always try to dispointing the candidate dont lose
ur confidence.

all the best who have sucessfully cracked the written
exam for further details please contact by mail
venugopal.palavalasa@gmail.com

Is This Answer Correct ?    13 Yes 0 No

Question { State Bank Of India SBI, 224519 }

which questions will be asked in sbi clerk interview


Answer

i have some please answer my questions

1.why should we select you?
2.tell me ur strengths and weak ness how it is useful to
our bank?
3.ur hobbies?
4.why our government nationalized banks?
5.disadvantages from private banks?
6.what is debt recovery tribunal?

Is This Answer Correct ?    0 Yes 1 No


Question { Mind Tree, 6527 }

program to reverse the order of digits in a given number of
any length.


Answer

main()
{
long int a;
int num[];
clrscr();
printf("enter a number");
scanf("%ld",&a);
while(a!=0)
{
d=a%10;
static int i=0;/* here we declare variable as static life
time is thru out the prgm*/
num[i]=d;/* store end of digits in array
i++;
a=a/10;
}
printf("reverse of d num is");
for(int x=0;x printf("%d",num[x]);
}

Is This Answer Correct ?    10 Yes 6 No

Question { HCL, 8519 }

write a c-program to display the time using FOR loop


Answer

main()
{
int hr,mt,sec;
for(hr=0;hr<12;hr++)
{
for(mt=0;mt<60;mt++)
{
for(sec=0;sec<60;sec++)
{
sleep(1000);
printf("%d:%d:%d",hr,mt,sec);
}
}
}/* here sleep(1000) maintain intervel of one sec b/w two
print statements*/ if u have any doubts contact my mail-id
is: venugopal.palavalasa@gmail.com

Is This Answer Correct ?    7 Yes 13 No

Question { TCS, 5126 }

swap prog


Answer

/* u r question is not clear but i proceed it as a swap of
two numbers*/
main()
{
int a,b,temp;
clrscr();
printf("enter two no's");
scanf("%d %d",&a,&b);
temp=a;
a=b;
b=temp;
printf("after swap no are:");
printf("%d %d" ,a,b);
getch();
} venugopal.palavalasa@gmail.com
}

Is This Answer Correct ?    5 Yes 0 No

Question { HCL, 3450 }

what is default constructor?


Answer

In d object_oriented programs actually we interacting with
the methods with the objects only.Objects are constructed
when we create an object the compiler automatically calls
one constructor i.e default constructor.if we explicitily
mention a constructor i.e if we pass any arguments it is
called explicit constructor.
This can be briefly explained based on below ex. i am
writing d code in java.
class Sample
{
int x,y;
Sample()
{
x=12;
y=13;
}
Sample(int a,int b)
{
x=a;
y=b;
}
void display()
{
System.out.println("values are"+x+y);
}
}
class SampleDemo
{
public static void main(String args[])
{
Sample s=new Sample();//default constructor;
s.display();
Sample s1=new Sample(12,13);//parameterized constructor
s1.display();
}
} if u have any doubts contact me
venugopal.palavalasa@gmail.com

Is This Answer Correct ?    1 Yes 0 No

Question { 2967 }

Read two numbers from keyboard and find maximum of them?


Answer

#include
#include

main()
{
int first,sec;
clrscr();
printf("enter two no's");
scanf("%d %i",&first,&sec);

if(first>sec)
{
printf("%i is big",first);
}
else
printf("%d is big",sec);
getch();
}

Is This Answer Correct ?    2 Yes 0 No

Question { 3712 }

Find the highest of three numbers and print them using ascending orders?


Answer

#include
main()
{
int a[3],i,f,s;
clrscr();
printf("enter 3 no's");
for( i=0;i<3;i++)
{
scanf("%d",&a[i]);
}
/* sorting starts here*/

for (f=0;f<3;f++)
{
for(s=f+1;s<3;s++)
{
if(a[s] {
temp=a[s];
a[s]=a[f];
a[f]=temp;
}
}
}
/* now sorted array is*/
for(int x=0;x<3;x++)
{
printf("%d",a[x]);
}
/* biggest elt is*/

printf("%d",a[2]);
getch();
}

Is This Answer Correct ?    3 Yes 0 No

Question { Bosch, 5446 }

application of static variables in real time


Answer

ya.. well before going to know the static variable u need to know the diff b/w static and general variable.
in case of general variable every object have own memory.In case of static variabale all objects share the static data members.
so conclusion is:general members hv own memory so there is no relation b/w one object data to other object data .Static data it maintains relation

uses:
when we open some websites in the homepage we found "hits".It denotes how many users open this site so far.so the "hits" is a integer type we declare it as a static member when i try to open the site my browser acts as a one object and increment the hits value and other person open the site the same increment variable is accessed by other person. my id: venugopal.palavalasa@gmail.com

Is This Answer Correct ?    4 Yes 2 No

Question { 3761 }

I have been selected for the written exam of the SBI
associated clerks held in jan 2011 . pls tell me....about
interview prepration......


Answer

Congrats for cracking the written test.Last time i faced
SBI interview successfully.What i am observing is the
interveiwers check whether the candidate is aware of
his/her external environment it denotes he is a capable of
learning new things.
At that time the board consisting of 4 members one
concentrate of our hobbies ,2nd one on GK,3rd one in
computers,other is chief interveiwer(she concentrate on my
bio-data which fills at the time of interveiw).
chief-interveiwer asked me 4 questions
1.what is meaning of ur name?
2.what is the meaning of ur town name?
3.the name of reservours in ur district?
4.which revers flow in ur district?
5.what is the speciality of ur district?
remaining two are suppliment question based on my answers.
regarding my hobbies i just write reading is my hobby and
browsing internet.
1.which type of books u read most?
and one suppliment question based on my answer.
Regarding computers
i hv done PGDCA in computers
1.how ur PGDCA is useful to our banking?
2.what is server?
3.what is on-line banking?
GENERAL KNOWLEDGE
1.what is numismatist?
These are some of questions which i faced last time in my
SBI interveiw.These are quiet simple ones.so dont be
nervoused in interview hall every official are very cordial.
All the best to every one. you can contact to my mail
id:venugopal.palavalasa@google.com
mob no:7842622632

Is This Answer Correct ?    2 Yes 1 No

Question { 2996 }

what is a bank


Answer

A bank is a financial institution.It accepts deposits from
public and lends the same to the who need it.

Is This Answer Correct ?    5 Yes 1 No

Question { 7984 }

what are the different channels of banking you use in your
daily life


Answer

In the offical term this is called "ALTERNATE CHANNELS"
1.MOBLILE BANKING
2.INTERNET BANKING
3.ATM
by using this alternate channels banks can reduce their
tranasction costs.so thats why every bank put more focus on
alternate channels.
venugopal.palavalasa@gmail.com

Is This Answer Correct ?    10 Yes 0 No