admin Site Admin
Joined: 05 Jul 2005 Posts: 689
|
Posted: Tue Jan 03, 2006 7:45 am Post subject: Sasken Placement Paper 2 |
|
|
Sasken Exam 20th Jul 2004
Pattern : C(10 Qs) + Aptitude(10 Qs) + Discpline based[CS/EC](10 Qs)
Duration : 1 Hr
C questions
------------
1.Consider the following declaration:-
char const *p = 'd';
Which of the following is not a permissible operation
(a) *p++
(b) ++p
(c) (*p)++
(d) All
2.What is the output of the following code:-
void print_arr(float **p)
{
printf(" 0 %f 1 %f 2 %f\n",p[0][0],p[0][1],p[0][2]);}
void main()
{
float arr[2][3] = {{0,1,2},{3,4,5}};
float **fl_arr;fl_arr = (float *)arr;
print_arr(fl_arr);
fl_arr++;
print_arr(fl_arr);
}
(a)(d)segmentation fault
3.What is the output of the following code:-
#define putchar
(c) printf("%c",c)v
oid main()
{
char s='c';putchar (s);
}
(a) c
(b) 99
(c) Compilation error
(d) Execution error
4.What is the output of the following code:-
void main()
{
printf("%d",
printf("ABC\\"));
}
(a) ABC\\
(b) 1
(c) ABC\4
(d) ABC\3
5.What is the output of the following code:-
int compute(int n){if(n>0){n=compute(n-3)+compute(n-1);return(n);}return(1);}
void main()
{
printf("%d",compute(5));
}
(a) 6
(b) 9
(c) 12
(d) 13
6.What is the output of the following code:-
void main()
{
int i;
for(i=0;i<3;i++)
{
int i=100;
i--;printf("%d..",i);
}
}
(a0..1..2..
(b)99..98..97..
(c)100..100..100..
(d)99..99..99..
7.What is the output of the following code:-
void main()
{
int a[]={9,4,1,7,5};
int *p;p=&a[3];
printf("%d",p[-1]);
}
(a)6
(b)1
(c)7
(d)Error
8.What is the output of the following code:-
void main()
{
int a[]={10,20,30,40,50};
int *p;p= (int*)((char *)a + sizeof(int));
printf("%d",*p);
}
(a)10
(b)20
(c)30
(d)40
9.Which code will run faster
for(i=0;i<100;i++)for(j=0;j<10;j++)a[i][j]=0;
OR
for(j=0;j<10;j++)for(i=0;i<100;i++)a[i][j]=0;
(a)First code
(b)Second code
(c)Same
(d)Compiler and hardware dependent
Aptitude
--------
1.How many 2 digit numbers are there which have 8 asthe unit number in it's square.
(a)3
(b)None
(c)2
(d)1
2. B is 8km East of A. C is 6km North of B. D is 12kmEast of C. E is 16km North of D.What is the distance b/w A and E.
(a)20km
(b)22km
(c)18km
(d)30km
3. x+y = zThen
(a)...
(b)y<z
(c)...
4. 2<x<3 , 7<y<8Then which is the greatest
(a) (x^2)y
(b) 5xy
(c) x(y^2)
(d) 5(x^2)y/12
5. A is taller than B, D is taller than D, D isshorter than E.Then which of the following is correct.
(a) C is taller than E
(b) A is taller than C
(c) D is shorter than A
(d) B is shorter than C
6.A small passage was given and 4 options whichsummarizes it was given.The best was to be chosen.
7.Another passage was given and 4 inference was givenand correct was to be chosen.This one is very easy.
8.Which of the following is a parellogram:-
(a)130,50,130,50(angle in deg)
(b)120,30,130,20
(c)90,90,90,90
(d)a & c
9. In the following series (an - 1)^2, 1 is the firstterm.Which are the next three(a)1,3,4
(b)0,3,6
(c)0,1,2
(d)0,1,0
Computer science
----------------
1.Deadlock occur when
(a)Some resources are held up by some process.
(b)...
(c)...
(d)None of these
2. A prefix expression can be equal to a postfixexpression reversed only if(a)It is left associative
(b)It is commutative
(c)It is right associative
3.How many lines will be printed in the followingPascal pgm[I don't remember the Pascal version,so I am giving Cversion]
void print(int n)
{
if(n>0){print(n-1);
printf("%d",n);//println(n) in Pascal version.print(n-1);}}
(a)3
(b)7
(c)15
(d)31
4.Maximum number of nodes in a tree with n levels.
(a)2^(n-1)
(b)(2^n)-1
(c)2^(n-1) - 1
5.Complete graphwith n nodes have
(a)n-1 edges
(b)n(n-1)/2
6.If d is the degree of a node in a graph and n isnumber of vertices then number of edges in that graphis
(a)Edi^n
(b)0.25Edi
(c)0.5Edi
7.A grammar was given and 4 strings was given and theone which was not possible was to be chosen.
8.A problem related to ethernet in which a stationsending a frame is of p probablity.There are mstations to send pckts.4 option was given.It was amathematical kind of question related to probablity.
9.Which of the following layer in the OSI model doeserror handling
(a)Data link
(b)Network
(c)Transport
(d) a & c
10.A network problem in which Data rate,Propagationdelay,and distance was given and it was to find howmany packets will be in the line.Choices where
(a)5000
(b)Not possible to find with given data
(c)1000
A
Interview [For CS students]
---------
There is Tech as well as HR interview. Tech interviewis the important one.
Tech interview questions
-----------------------
They will ask about the project.They will ask generalquestions about it and most probably will not go intothe implementation part of it.So one must have ageneral idea about the project done.
Interview is mainly based on Data Structures.Somequestions are as follows:-- What is a tree,its application,order forinsertion,deletion and traversal with worst caseanalysis.- What is a graph,its application.- Height of a tree- Balanced tree and how to balance a tree- Minimum Spanning Tree- Dijikstra's, Prim algorithms- Define a structure for a linked list.- Binary search and its analysis- Heap sort and its analysis- What is a heap and its application- Cache and its working- Memory(IO mapped)- Recursive fns and types, its adv and disadv.- Compiler(grammar)
*****C debugging questions like
(1)What is the problem with the following code
int * f(int a)
{
int i;i=a;
return(&i);
}
Ans-> We can't return address of auto variable as itis allocation is made in stack which is deallocatedwhen the function returns.
(2)a.h b.c c.c d.cint i=0 #include"a.h"
#include"a.h" extern inti;
void main{.....}| | |b.o c.o d.o Compilation Phase
Linked to get exe. Will there be any problem in any phase.If yes thenwhere and what?In linking phase as there will be multiple declarationof i.
*****You will be told to write some code like
(1)To find string length by using recursive function.
(2)To find fibonaci series by using recursivefunction.
(3)To write code for malloc so that allocation may bemade fastly.
(4)Write a fn prototype which return a pointer whichpoints to an array of 10 ints.
HR Interview
------------
- Introduce yourself- Why should we take you- What you know about Sasken and etc. |
|