Вы находитесь на странице: 1из 4

Academic Criteria:

Minimum 60 percent throughout (Class X, XII and Graduation)

Only students from B.E/B.Tech (Computer Science, Information Science, Information


Technology, Electronics & Communication, Electronics & Telecommunication, Electronics &
Electrical, Electronics & Instrumentation,

Telecommunication, and Instrumentation) are eligible.

Education gap of maximum up to 1 year is allowed.


Selection Process of Tech Mahindra
B.Tech graduates in any of the streams i.e. CSE, IT, ECE, or E & I are eligible to attend the recruitment drive of Tech
Mahindra. Besides this basic qualification, candidate must possess minimum 60% marks (cut off) with no backlogs.
Selection process of Tech Mahindra includes 3 separate rounds.

Written Test

Technical Interview

HR Interview
Written test may include questions on

Verbal and Nonverbal Reasoning

Logical Reasoning

Quantitative Aptitude

English
There will be 35 questions on logical reasoning, 20 questions on verbal and non-verbal reasoning, 15 questions on
quantitative aptitude, and 100 questions on English language. Time allotted for the completion of written test is 1 hour
and 40 minutes. In this composite time, 40 minutes is provided separately for answering English language session.
Aspirant can attempt other sessions with in remaining 1 hour.
In the Technical Interview session, one can expect questions according to the selected stream of specialization.
Questions will generally asked on the fundamental concepts on programming languages (like C, C++, Java), Data
Structures, etc. Questions might also be asked on the projects done by the student.
In the HR round, each student might be provided with a separate topic. They will be asked to express their ideas
based on the topic. After that, an open GD session will be conducted based on the topics provided to each student.
This session also includes questions based on the information provided in the CV of the candidate.
Aspirants can expect changes in upcoming recruitments according to the HR policy of Tech Mahindra.

Qualification : BE,B.TECH,MCA
Last date : 17-10-2015
Salary : 3.1L 6.2L P.A
Location : Across india
Skills : Good communication
Experience : Freshers

Apply mode : Online

1.First day of 1999 is Sunday. What day is the last day?

(A) Sunday (B) Monday (C) Thursday (D) Tuesday

2.A radio, when sold at a certain price gives a gain of 20%. What will be the gain in percent, if sold for thrice this
price?

(A) 260% (B) 150% (C) 100% (D) 50% (E) None of these

3. #define swap1(a,b) a=a+b;b=a-b;a=a-b;


main()
{
int x=5,y=10;
swap1(x,y);
printf("%d %d\n",x,y);
swap2(x,y);
printf("%d %d\n",x,y);
}
int swap2(int a,int b)
{
int temp;
temp=a;
b=a;
a=temp;
return;
}

4) 2,5,10,17,26,?

a) 35 b) 37 c)38 d)42

5. If a school cafeteria needs c cans of soup each week for each student, and if there are s students in the school, for
how many weeks will x cans of soup last?

A) csx B) xs/c C) s/cx D) x/cs E) cx/s

1. main(int argc,char *argv[]) { printf((argc > 1 ? "%c" : "%c",*++argv); } If the i/p string is "GESL Bangalore". a. G b. E
c. B d. GESL answer: c

2. int a[]={0,0X4,4,9}; /*some values are given*/ int i=2; printf("%d %d",a[i],i[a]); what is the value?

3. A chain is broken into three pieces of equal lengths containing 3 links each. It is taken to a back smith to join into a
single continuous one . How many links are to be opened to make it ? Ans : 2.

4. A box contains coins (equal no. of every one) of rupee and half rupee, coins of 25 paise, 10 paise, 5 paise value, 2
paise value and one paise value. The total value of coins in the box is Rs. 1158. Find the number of coins of each
value. (A) 500 (B) 400 (C) 700 (D) 600 Ans : (D)

5. AB means A is the father of B. A + B means A is the daughter of B. A B means A is the son of B. A B means A
is the wife of B. Then, what is the relation of P with T in the expression P + S T ? (A) Son (B) Daughter (C) Sister
(D) Wife Ans : (C)

1. A person was going through train from Bombay to Pune. After every five minutes he finds a train coming from
opposite direction. Velocity of trains are equal of either direction. If the person reached Pune in one hour then how
many trains he saw in the journey? 2. Find the 3 digit no. whose last digit is the squareroot of the first digit and
second digit is the sum of the other two digits. Ans: 462 3. A man sold two cows for Rs. 210 at a total profit of 5 %. He
sold one cow at a loss of 10% and another at a profit of 10%. What is the price of each cow? Ans: Rs. 150 and Rs. 50
4.Choose the word which is the exact OPPOSITE of the given words CROWDED A. Busy
Congested C. Quiet

B.

D. Deserted Ans-D 5. There are 200 questions and time is 3 hours out of

which 50 questions are from maths. If time alloted for maths problems is twice of that others, what is the time required
for one maths question. Ans:1/50 hr - See more at: http://www.infinitecourses.com/Job-Details.aspx?Job=TechMahindra-Placement-Paper-June-2015&JobID=11634#sthash.EYypQTph.dpuf

1. In an election contested by two parties, Party D secured 12% of the total votes more than Party R. If party R got
132,000 votes, by how many votes did it lose the election? Ans-36000 2. struct a { int b; }; struct b { int b; }; int main()
{ struct a first; struct b second; first.b =10; second = first; printf("%d",second.b); } a) 10 b) garbage c) compile error d)
run time error Ans: c 3. A takes twice as much time as B or thrice as much time as C to finish a piece of work.
Working together, they can finish the work in 2 days. B can do the work alone in: A 4 days B 6 days-Ans C 8 days
D.12 days 4. Look carefully for the pattern, and then choose which pair of numbers comes next. 8 12 9 13 10 14 11
A.
14 11 B.
15 12 C.
8 15 D.
15 19 E.
8 5 Ans-B 5. Fill the blank in the middle of the series
or end of the series. ELFA, GLHA, ILJA, _____, MLNA A.
OLPA B.
KLMA C.
LLMA D.
KLLA Ans-D
1. Rani's weight is 25% of Meena's weight and 40% of Tara's weight. What percentage of Tara's weight is Meena's
weight? A. 10% B. 100% C. 150% D. 160%
2. Find the output for the following C program main {int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
3. Complete the series : 240, 240, 120, 40, ?, 2 (a) 6 (b) 8 (c) 10 (Ans) (d) 20 (e) None 67 . what is the resonant
frequency of parrel RLC circuit of R= 4.7 komh L= 2 micro Henry and c=30pf. a). 20.5 MHz b). 2.65 KHz c). 20.5 KHz
d). none
4. If a slaesman gives a discount of 20% from the listed price of a T.V. he makes 20% percent of profit if a disount of
10% is given on listed price then his profit will? Answer 35%
5. A 16 bit monosample is used for digitization of voice. If 8 kHz is the sampling rate then the rate at which bit is
transferred is a) 128 b) 48 c) d
1. A coffee shop blends 2 kinds of coffee, putting in 2 parts of a 33p. a gm. grade to 1 part of a 24p. a gm. If the
mixture is changed to 1 part of the 33p. a gm. to 2 parts of the less expensive grade, how much will the shop save in
blending 100 gms. A.Rs.90 B.Rs.1.00 C.Rs.3.00 D.Rs.8.00 Ans.C 2.main() { int i=32; { int i; for(i=0;i<5;I++)
some operation....... } printf(%d,i); } a.5 b.garbage
c.error
d.32 3. Find the next number in the
series : 1, 4, 9, 61, 52, .... ? (a) 63 (Ans) (b) 50 (c) 55 (d) 70 (e) None 4. A ball dropped from H height and moves 80%
of height each time. Total dist. covered a) 4H b) 5H c) 7H d) 9H 5. The ratio of cost price to the marked price of an
article is 4 : 5. If the ratio of the profit percentage on selling the article to the discount allowed on it is 5 : 4, what is the
profit percentage? A. 10% B. 12% C. 12.5% D. 15% - See more at: http://www.infinitecourses.com/Job-Details.aspx?
Job=Tech-Mahindra-Placement-Paper-October-2014&JobID=10756#sthash.CkqKN8bF.dpuf

Вам также может понравиться