Monday

Effigent Placement Papers

I dont have any previous question papers of Effigent India Pvt Ltd but

I know the pattern of the Test as my friend is working over there. The

work Job profile Cocoa Trainee which should be worked on Mac OS.
The test is conducted at Effigent India Pvt Ltd campus itself which is

located at SP Road in Secunderabad on 12th Nov.
Note: The Candidates have already been short listed and its not direct

walk-in. There will not any negative marks for wrong Answers.

The test comprise of :
Aptitude: number series, alphabet series, reference to the context,

percentage, profit loss, dist, time and speed.
c/c++: Fibonacci series, link list, stack
Java: string , string buffer, clone, static class, inner class,

deadlock, threads

Ericsson Placement Papers

1. first 10 questions where of data interpretation
they will give u some figures based on that u have to answer
2. 5 questions of data sufficiency.
3. 20 questions of quantitive aptitude
mainly from rs aggrawal (solved examples)
topics like profit and loss
time and work
percentage average clock time boats work and distance
4. 10 questions of analytical reasoning
a. one questions of similar puzzle given in rs agrawal verbal and
nonverbal reasoning
5 5 questions of verbal reasoning
synonyms + some verbal reasoning question based on passage
6.10 technical questions
3 questions on Unix
1 question which is not a universal gate
2 more question of Electronics

C paper
questions not in correct order
---------
1 i don't remember exactly but something on function ptr.
2 is char a[] and char *ptr same ? Ans no
3 can we use void fun(char *ptr) in place of void fun( char a[])? Ans Yes
4. what is the o/p of printf("%d",i++*++i); Ans no o/p error
5. in a 64 bit os what is the o/p of sizeof(a)= ? char a[10]; Ans 10
6 what is the o/p of
for(i=0;i<10;i++);
{
printf("%d",i);
} Ans no o/p
7.can a structure point to itself ? Ans Yes
8-12. 5 questions on command line arguments (simple one from test ur c
skills from yashwant kanetakar)
13 will this work strcpy(string,'a'); Ans Yes
14. char *a="abcd";
char *b="fgeh";
strcpy(a,b) will it work
is no what is the error?
Ans it will not work as what is beyond abcd in a is not known
15. i don't remember