Placement Papers - Sasken

Sasken Communication Technologies Ltd.
SASKEN COMMUNICATIONS PAPER AUGUST
Posted by :
KALPU-IIIT
(14)
PAPER : SASKEN COMMUNICATIONS PAPER AUGUST

1.WRITTEN ROUND----
guys this round was really tough.......b prepared well.......
There r 5 section . each section has individual cutoff......there is no negative marking......it contain 110 questions...in 110 minute.....
brief desription of written r-----section

a.)Analytical Reasoning......containing 30 ques....
it contain calculation base questions.........based on data interpretation.........it also contain some of the ques based on apty........I cann\'t remember any questn but ques were not so tough....

b.)Verbal ability......containing 10 ques
it contain a paragraph.......in which we have to fill blanks.......on the basis of inferences

c.)Tecnical comphrensions........10 ques
it contain comphrension based entirely on some technical topic ........this is to check whether u can make poper inferences on any technical background.........

d.)C /C++ APTITUDE...........30 ques
it contain typical quest frm pointers......data strucure .......and........file system in c
so prepare well for this section....it is the only section whr u can make difference......

e.)CS or EC Core ........30 ques
it contain all the subject frm cs........stld....networking protocol...function of diff layer in osi model......general computer awareness.........this section will b different for cs /it and ec candidates


2.Technical Interview----
C and C++ with data structure r very imortant for this section.......whole of my Technical Interview was frm C++

some of ques r as follow-----

1.)To write equivelent code for calloc in terms of malloc
Ans p=calloc(m,n) is equivelent to
p=malloc(m*n);
memset(p,0,m*n);
What malloc or calloc return........
Ans void pointer pointing to 1st byte to memory allocated

2.) To write functioun for reversing the string

3.)Prototype for pointer to a constant and pointer constant
Ans char const*p & char*const

4.)To implement operator overloading.....ie to overload ++;


5.)What is constructure......encapsulation.....

6.)Prototype for arrray of object.

7.)Can we have private constructure
Ans yes

8.)Abt unix

9.) To selete a node in link list........