Placement Papers: Erricson Paper 12 Feb 2006 Gurgaon
Download PDF of This Page (Size: 118K) ↧
Examrace Placement Series prepares you for the toughest placement exams to top companies.
I gave test on 12 Feb 2006 in Gurgoan
There were two round
1 aptitude (60 questions 60 mins)
2 c or Java test (15 questions 30 mins)
first one has 2 clear the aptitude test then only u can give the C or java test
Aptitude
-
first 10 questions where of data interpretation they will give u some figures based on that u have to answer
-
5 questions of data sufficency.
-
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
-
10 questions of analytical reasoning-one questions of similar puzzle given in rs agrawal verbal and nonverbal reasoning
-
5 questions of verbal reasoningsynonyms + some verbal reasoning question based on passage
-
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 correcr order
-
i don't remember exactly but something on function ptr.
-
is char a[] and char * ptr same? Ans no
-
can we use void fun (char * ptr) in place of void fun (char a[])? Ans Yes
-
what is the o/p of printf ( “%d” i + + * + + i); Ans no o/p error
-
in a 64 bit os what is the o/p of sizeof (a) =? char a[10]; Ans 10
-
what is the o/p of for (i = 0; i<10; i + + ); { printf ( “%d” i); } Ans no o/p
-
can a structure point to itself? Ans Yes
-
5 questions on command line arguments (simple one from test ur c skills from yashwant kanetakar)
-
will this work strcpy (string, ‘a’ ); Ans Yes
-
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
-
i don't remember