Wednesday

iSoft Tech Placement Paper

1 analytical - some 30 questions i remember
2 verbal - 15 ques
3 technical " c " - 30 ques

analytical - 3 calendar questions., 1 relationship question(answer grand son) , it was an easy paper { only calendar q were tough for me}

verbal - 5 fill in with choices { answers i got were E,E,E,E,E)
1ST ANS - DELIVERED ON
2ND ANS BARREN
SO ON

BE PREPARED WITH HIGH FREQUENCY WORDS FROM BARRONS
ALL THE QUESTIONS WERE FROM THOSE 300 WORDS

TECHNICAL " C"

FIRST 5 QUESTIONS WERE VERY TOUGH
REMAINING WERE OK

ANYHOW JUST TRY TO ANSWER MORE QUESTIONS.DONT STICK TO ANY QUES. MOVE ON TO THE NEXT IN SUCH SITUATIONS.

C Questions

1.a=5,b=3,c=a,b
d=(a,b)
printf(c,d)
ans:c=5,d=3

2.e(int n)
{
if(n>0)
{
...(not clear)
printf("%d",n);
e(--n);
}
return
}
ans:0,1,2,0

3.which has no problem with pointers

int *f1()
{
int n;
return (n)
}

int *f2()
{
int *p;
*p=3;
return p;
}

int *f3()
{
int *p;
p=malloc();
return p;
}

ans:no error

4.header file ->contains declarations.

5.sizeof operator is executed during compile time..

6.*p+=1
*p++
are these two same?
not same.

7.func(int i)
{
static int count;
count=count+i;
}
ans:1+2+3...(counts values does not go after funtion call

8.is('a'<'b') true

10.short int=16 bits

11.4 stmt. ans.int float i;

12.int num[3];
num[3]=2;

ans:first stmt deals with size
second deals with element

No comments: