Showing posts with label syntel. Show all posts
Showing posts with label syntel. Show all posts

Monday, November 14, 2011

Syntel Placement Paper (Technical & Analytical)



 Syntel Placement Paper (Technical & Analytical)
Technical Test:
1. Graphics:Painters algorithm is used for...........
2. Graphics:Why is 'Lighting' operations done on World Coordinates?
3. Graphics:One more question
4. Some question on C External Variables.
5. How can you call a function written in FORTRAN from a C program ?
6. Normal question on pointer addition
7. Another question on pointer addition
8. A question on 64 bit OS's and Virtual Memory it will be having
9. Another question on 64 bit OS
10. A structure was given and it contained normal data as well as some bit-wise data.You had to find the total size taken up by the structure
11. A big code with lots of pointers. There was a struct which contained 2 arrays. Then an array of that structure was declared. The code used these structures and you had to find the values of a variable 'j' at various points inside the code
12. A code which had some declarations of some data items. There were a couple of normal data items(char,int..) and some pointers as well and a malloc call. You have to find the total memory taken up in the stack(Hint:Pointers and all are allocated in heap, not in stack, so dont count them).Also in most of these questions, they were specifying that the OS was 32 bit
13. A question on nesting of pointers. There was this pointer to a function which returned an array of char pointers.....You had to give the exact definition of the function
14. Value of 2 particular variables in C(MAXINT and some other constant)
15. What do you need to do to open more than 10 files simultaneously in Microsoft Operating System? -change stdio.h/change CONFIG.SYS/compiler dependent
16. A question on Macro( consisted of something like CTRL&037)
17. Another question on Macro expansion
18. Yet another question on Macro expansion
19. UNIX question on 'who' output and then doing some other operation and then asking you whats the output.
20. UNIX question on 'awd' operation. 
Analytical Test:
21. 101^100 -1 is divisible by.....
22. Question on boat ( stream velocity given...)
23. Train Question( Goods and Passenger train.. their speeds given..)
24. Pipe question (with leak at the bottom..)
25. Salary & Proportion problem
26. Another problem on Salary & Proportion
27. Age question-father and son
28. Another age question
29. Question onratios(Sachin:Saurav=Saurav:Rahul=3:2....together they scored some runs,you had to find the runs scored by Sachin)
30. Angle between hands when time is 2:20
31. x^2 + 4 y^2 =4xy.Find x:y
32. A question on Arithmetic Progression(something like 5 times the 5th term is 8 times the 8th term..find 12th term...)
33. A and B's work units given.They were together gievn Rs.720.When C joined,they together completed the work in 5 days.Find C's wages
34. There was a circle.A square of max size was cut from it.From this square,a circle of max size was cut.What was the ratio of this final size w.r.t initial size?
35. A runs 3/4th faster than B.One of them was placed some metres ahead.How far should the finishing post be placed so that both of them finish at the same time?
36. Longest time one has to wait for next birthday?(366/365/4 years/8years)
37. Next no: in the seq: 7,11,__,19,23
38. Some question  steps...it was 10 ft high...an ant travelled upwards..and total time taken
39. Cricket-some data on runrate of the opposition being 15%....
40. Time & Distance..somebody was travelling along the circumference.... The questions are not at all complete because lack of memory :-) 

Syntel Placement Paper (Aptitude, Verbal & Reasoning)



Syntel Placement Paper (Aptitude, Verbal & Reasoning)

Part 1: (Verbal/English)
Antonyms:
1. equanimity
2. sequester
3. apathetic
4. dislodge
5. sedate 
Analogies:
1. celeberate:marriage::
a. window:bedroom b. lument:barevemant
c. pot:pan d. face:penalty
2. neglegent:requirement::
remises:duty cognet:argument
easy:hard careful:position
3. Germ:disease::
man:women doctor:medicine
war:destrustion shopkeeper:goods
4. bouquet:flower::
skin:body chain:link
product:factory page:book
5. letter:word::
club:people page:book
product:factory picture:paper

Part II
1. One monkey climbs a poll at the rate of 6mts/min and fell down 3mts in the alternately. Length of the poll is 60 mts , how much time it will take to reach the top? a. 31 b.33 c.37 d.40 (ans: 37)
2. X men work for X days to produce X products, then Y men can produce Y products in - - - - days. (ans: y^3/x^2)
3. sqrt(12 + sqrt(12) + ((sqrt(12) +......................infinity) = ? (ans: 4)
4. consider a square ABCD, in which E is the mid-point of BC & F is that of CD. Now find the ratio of area of triangle AEF to the area of square ABCD. (ans: 3/8)

Part III (Reasoning)

1. There are 4 buses - A,B,C,D. There are 220 students in a school. A can carry 60 students. B can carry 50 students. C can carry 40 students. D can carry 35 students Cost of travelling in the 4 buses were given, A - 160 , B- 140, C- 125 , D- 95 (not exact values)
a) Find the bus combinations, so that all the students can be carried in the minimum cost (One can use any no. of buses of a particular type)
b) Find the min. no. of buses required to carry all students etc.
2.  P speakes Italian & French Q speakes Spanish & English R speakes Italian & German S speakes Spanish & French T speakes English & German etc. Find a) Mediator between P & Q b) Most popular language etc
3. All P's are Q's some R's are not C's Some C's are P's & so on ( 5 Q's based on these facts)
4. One Logical Venn diagram problem
5. One simple flow chart 

Syntel placement paper (Technical-Data Structure)


Syntel placement paper (Technical-Data Structure)

1. The grammar for A, B, S is given below.

S->Ax|By

A->Ax|y

B->x|y

possible ans is xy|xy

2. In n*n matrix , there non zero numbers in diagonal and either side of the diagonal. If represented in one dimensional array, assign thevalues which are non zeros.

find relation with i,j iteration and linear array like a[2*(i-1)+j] this the matrix will be

x x 0 0 0 0 --------

x x x 0 0 0 0 -----

0 x x x 0 0 0 ------

0 0 x x x 0 0 -------

0 0 0 x x x 0 0 ----

remumber n*n matrix

3. In-order of the letters is given as below: If written in pre-order like given below: write the post-order:

4. fun(n)

{if(n<=2)return (1); else

return ((fun(n-1)*fun(n-2));}

find the order of complexity of the programme.

answer ---- N(2^n)

6. If a and b are given. write the results of the programme given below.

a=a XOR b;

b=a XOR b;

a= a XOR b;

answer is swaping of a and b

so b, a is answer

7.for a given CMOS the voltage is halved frequency doubled capacitance halved what is the present CMOS power

ans (b)---- dynamic power is 1/2 *C*f*V^2

8.if a row dominated two dimensional array in the following which one is advantage and why?

a) for(i=0;i<1000;i++)

for(j=0;j<1000;j++)

temp=temp+a[i][j];

b) for(j=0;j<1000;j++)

for(i=0;i<1000;i++)

temp=temp+a[i][j]

9. what is area of a Hexagon with side as 1unit

ans is 3*(sqrt(3))/2

10. If traverse in a chess board right and down from one corner to another corner how many possible ways will be there

ans is C(16,8) or (16!/(8!*8!))

11. Tick the below which can bipartite (graph theory)

1)tree   2)forest of trees   3) even cycle graph   4) odd cycle graph

ans is 1,2,3

12.The fig shown in below is a SRAM (1K* 4 bits) ,how many of this SRAMS are required to design 16K of one byte

Ans is 32 SRAMS and one 4 to 16 decoder

13. suppose two persons entering into one room in the morning 5 to 6 A.M. what is the probability they will enter in 10 minutes gap.

14. In a binary tree what is the height and lowest no of levels for N nodes.

Ans: is highest is N and lowest is log(N+1) base 2

15.represent 3 and -3 in base -2 form taking two states (0,1) only

Syntel placement paper (Aptitude)



Syntel placement paper (Aptitude)

APTITUDE:
1.)  Maximum numbers that can be formed using all the 4 digits 6 4 8 1 without repetition and which is divisible by 9.(Ans: none)
2.) Find the number of sides of a regular convex polygon whose angle is 40degrees.
3.) a+b+c=0, then roots of ax^2+bx+c=0 is
1.imagenary   2.real    3.coincidental    4.zero
4.) Difference b/w the compound interest and simple interest for Rs.2500 for 2 years is given. find the rate of interest.
5.) there was one more question on S.I and C.I
6.) The minimum number by which 60 is to be multiplied to generate a square.
Ans: 15
7.) A monkey climbs 6 mts and falls 3mts in alternate minutes. Then time taken to climb a tree 60metres high?
a. 35   b.37    c.32   d.34   (answer is 37)
8.)  A bucket contains z drops. and it leaks x drops in t secs.then the time required to empty the bucket (in minutes).
9.) 6 pipes fill or empty the cistern. find the number of emptying pipes if it takes 18hrs to fill and 18 hrs to empty.
10.) The largest no: which is a factor of 1080 and 729
11.) No: of spheres of radius 1 that can be got from sphere of radius.
12.)Travelling at 3/4th the speed a man is 20 minutes later then speed is?
13.) there are 6 keys and 6 locks. then number of combinations to be tried out to get the actual solution
14.) choosing 2 people out of 10 in how many combinations can a particular person (some name) be always included....

15.) from 6 white balls and 7 black balls probability that 2 balls drawn at random are of the same color?
16.) if a sales man gets successive gain of 15% and 20% then his actual gain?
ans. 38
17.) a string of pearls such that 1/3 is lost and of that 1/4th is missing, remaining is 20 then actual number of pearls?
ans. 40
18.) a man gets a gain of x%. but if he had sold at twice the cost price, what will be his gain?
19.) a clock was 7minutes behind the actual time on 3 p.m. on Wednesday and 8 minutes ahead of actual time on (not sure) 4 p.m. Friday. when will it show the correct time?
20.) boat moves upstream in 6 hrs and covers the same distance downstream in 5 hrs. then speed of a raft floating? accuracy of question not sure)
21.) (this was the last question) no idea what it stands for........ some kind of notation like S(P(M((D(a,b),2))):P(M(S(D(a,b),........

1. ab   2.(a-b)^2    3.(a+b)^2    4.none
22.) if x men working x hrs per day can do x units of work in x days, then y men working y hrs/day would be able to complete how many units of work i y days?
ans. y^3/x^2 (question in R.S. Agarwal)
23.) ( this was a question in the first page of the section II booklet) a cone with radius----- and height -----. a hemisphere covers the cone such that base of hemisphere meets that of the cone. then the enclose volume.....(R.S. Agarwal consists of similar questions)
24.) there was one more question on volume and surface area.
25.) 1 Rs, 50 ps , 25 ps coins are in the ratio ---------, then the number of 50 ps coins if they sum to ------Rs. (similar question inR.S.Agarwal)
26.) there was one more question on coins i.e. about getting a change of 10ps and 25 coins for ------Rs. (how many possible combinations or so possible)
27.) x/y+y/x=40/21(don't remember the exact value, believe this is the one) find x and y there were 2 questions on train and one was like:
28.) a goods train starts and after 2 hrs a passenger train at 4km/hr starts and overtakes the goods train after 4 hrs, then the speed of goods train?
29.) 15hrs of boys work=6 hrs of women's work. 3/5 of the work is done by -----boys and -----women. How much time would be?

30.) there was one question on triangle
31.) a figure was given a square with four corners shaded and asked to find the area of the shaded portion.... ie area of square-area ofthe regular octagon.

Syntel Paper : Aptitude - English - 8 January 2011


Hi Friends,

Syntel had introduced a new selection procedure from 2011. It conducted an online exam for the Syntel registered colleges. Students can attend the exam at their own colleges.

The online exam Details
Its an 45 minutes exam with 45 questions.

1)Logical reasoning
2)Verbal

17 students were able to get through the exam…I was one among the selected. 
We were asked to attend the interview at Hyderabad (Vardhaman Engg College).

Day of Interview:

We went to the venue by 8 AM and they started interview sessions by 9.30 AM. I was called for interview at 6 PM, mean while they showed us two movies. (3 idiots, pursuit of happiness (questions will be asked on how you spent your day)).
Every panel has two interviewers,

Me: Gd evng sir, mam 

Sir: plz take Ur seat.
Mam: how is ur day?
Me: fine mam. I told abt how I spent time( regarding movies, and other)
Mam: Say something about you!Me: I said for 5min. ( Questions were asked on how u spend leisure time, strengths).
Sir: being an ECE student why r u coming to IT?
Me: Sir I just want to grab the opportunity where ever I go. Due to my knowledge in programming language i feel I am also suited for IT.
Sir: what are Ur areas of interest?Me: digital image possessing, Operating systems. Due to my interest in DIP I am doing my mini and main project in image possessing.
Sir: whats Ur mini project?
Me: said abt my mini project for 3-4min
Sir: what languages do u know?Me; C, Java
Sir: can u write a prog for me?
Me: sure sir. Wrote a prog based on their question.

They asked me some logical questions.
They said thank you, you can leave.

All the best Friends!

Syntel Paper :Hyderabad - 9 January 2011


Hi! 
This is kranthi from Griet college, Hyderabad.

Eligibility criteria:

Should have 50% aggregate through out academics
No backlogs as of now. (active backlog)


There were 3 rounds.

1. Online aptitude test (held for all colleges..throughout A.P)
2. H.R interview.
3.Technical interview.



The aptitude test consisted of LR+verbal+quant. (results are announced after a week) out of 150+ students 33 had cleared and shortlisted. For next rounds. From our college.


The next 2 rounds were conducted at Vardhaman College for 3 days. There are more than 1500 students who cleared written throughout the A.P. So they had taken 3 days for interviews for all the students.

My interview was on 1st day and batch4.
Batch4 started at 8 p.m.

HR interview:

  • Tell me about yourself?
  • Strengths?
  • Weakness?
  • Family background?
  • Why I should hire you?
  • Why Syntel?
  • Willing to work any where?
For how many years will you work for syntel? (asked me to say some specific number of years.
Extra curricular activities.
  • Interested in which subject?
  • Goal?

In which type of company would you luck to join? (asked me to tell the name of company)
Guys. Please be in confidence with you are answers at HR round. It is easy to clear the HR round.

Remember they check our confidence that's it and please keep eye contact with the interviewer.

Next I was shortlisted for the technical round.

Technical round:


There were two people(interviewers) in tech round

Good eveng mam,gud eveng sir.
Good evening kranthi please be sited.


Asked my name.
You cleared HR round right?
Yes mam.
  • Asked about myself
  • Asked a puzzle
  • Asked about goals
  • About project
  • About family background
  • Willing to work anywhere?
  • Any questions?

Guys technical round was so easy. The syntel people check your communication skills and confidence not the tech.


They need good communication skills thats it.

The results for interviews are announced after a week on 22nd Jan with God grace I'm the one who got selected (10 students from our colg out of 33)

This was the 5th company to our college. So guys please never lose you are hope be confident.
Try till you succeed never give up.

All the best!

See you at Syntel!

Syntel Paper : Pune - 4 January 2011


Hello readers, this is Bhushan Sontakke and am doing engineering in IT. There was a campus recruitment drive for Syntel on 4th Jan 2011 all over Maharashtra. 
There were 2 rounds: 
1) APTITUDE TEST
2) Technical cum HR interview


The aptitude test was conducted online in the respective colleges and consisted of the following sections(which we came to know at the time of test).

  • LR 
  • VERBAL
There were 45 questions and the time allotted was 45min. Sections were mixed i.e there were no 2 separate sections.

The initial questions were based on logical reasoning and consisted of puzzles. There were about 3-4 puzzles which covered about 10 questions. These type of questions consumed a lot of time. Other LR questions were based on series completion etc.
From verbal part the questions mainly were grammatical based on tenses, prepositions, conjunctions, tags etc.

The initial part of the test consumed a lot of time and as the test was online we were not able to see the rest of the paper. We had to complete the in hand questions and then proceed. That was the toughest part of the test. The later part of the test consisted of very simple questions.


The aptitude result was declared 12th and we were 9 people selected for the Interview from about 120 people in our college. The interview was declared on 16th Jan which was my Birthday! I was very happy and confident because it was my birthday on the interviews day...!! We were called in Syntel's Campus at Talawde, Pune for the interview.

When i reached the venue there were 500 people standing in a queue for the interview who traveled from all over Maharashtra for the interview.

The interview process started at 11. And my turn came at 8.30pm in the night. 
And finally i was called... There were two persons, one took the technical interview and other the HR. When I entered I wished them and they both asked me to have a seat.

Initially they introduced themselves to me and then started the interview. First one of them asked me technical questions. The technical questions were based on the things written mainly in my resume; the technologies which you mention in your resume. He asked me questions based on Linux OS, SQL, HTML, XML the project mentioned in my resume. He also asked about the final year project. Don't worry the questions were just the basics of the above mentioned and not very deep.

Later the HR took over.


HR : Syntels campus is 25km away from your place. How will you manage?
Me : Answered.(By this question he just wants to see your commitment towards the job. Answer Positively)
HR : Why is this job important to you?
Me : Answered(For checking your approach towards the job.)

HR : Your engineering score is less. Why so?
Me : (To find out the reason, and to see if u feel regretful, your attitude etc )

HR : What you do to improve your communication?
Me : Answer sincerely.(To check how much importance you give to communication and english language.)

HR : Do you have any questions?
Me : Which platforms and technologies are used in Syntel?

HR : He said that it always changes and you got to be flexible.
Me : Ok. I will be.

HR : Happy Birthday..!!
Me : Thank You Sir.(With a big smile.

Confidence and Positive attitude are the main things which you require during interviews. Even if you are not technically strong its ok but you should be confident.

The results were announced on 23rd Jan i.e after about 8 days and I was selected. 

This was my first interview in which i got selected.

WORK HARD AND YOU WILL DEFINITELY SUCCEED.

ALL THE BEST!

Syntel Paper Great Noida - 12 November 2010


Syntel - Reasoning
1) (Last question and the easiest) a simple flowchart whose steps are as follows. value of r and h are given, a and b=0 m=pi*r*r*h n=(pi*r*r*h)/3 if (m==n) do ------else b=4*pi*r*h print a and b

[Don't remember if condition is m==n or m 


2) (Second last question this was also easy) it was about a set of people talking 4 languages and then questions were about who could act as a translator to whom?

3) There were 3 questions based on an argument given questions were to find out which statement in the

objectives given could strengthen the argument or to weaken the argument. (Bit confusing)

4) Blood relationship question (I remember all the statements given, though not the question) 10 people in a family A B C are husbands D E F are wives altogether there are only 4 women. Each family can have almost 2
children and C has at least 1 child. D and G are related to A. E


cannot be related to H and I and J are not related.

5) (This consists of the most confusing set of questions)
a set of statements are given and then questions were asked, the statements were like
All A B C D E F are Q's
All A's are B's
(better leave this question for the last)


6) Alice works on Monday, Wednesday and Friday
B does not work on Wed
C works only on Tuesday and some other day(don't remember)
D does not work on Friday
E works on all days except on the first Monday and Thursday

Then questions like who all will be available on which days.

Syntel Paper Bangalore - 23 January 2011


Hello! 
Rounds we have for this recruitment drive in 2011.

No. of rounds in our case:

1. Aptitude (online)
2. GD
3. Technical
4. HR


Aptitude was very easy.I could not even attempted the whole paper but by God's Grace I was selected.
There were 45 question.

All question were from VERBAL and NON VERBAL REASONING. Not even a single question from Quantitative Section.

Focus was mainly on Blood relations, puzzle test, series R.S Aggarwal is more than enough.

After that we got a mail from College about Syntel.

We were called for other rounds in Galgotia.


First they showed us PPT, after that we have GD round
GD was good but depends on the coordinator.


Then we had Technical round.
Prepare Everything About Your Final Year Project Language, DBMSv(RDBMS)

Easy but you must be technically sound.

After HR
I had a good experience with HR. She was calm. She asked questions like:

  • Introduce yourself
  • Why syntel
  • Toughest situation
  • Family background
Be confident and please don't joke around with them. They are really cool.

ShareThis

 
View My Stats