Archive for February, 2007

TechMahindra(MBT) 11 July 2006

TECH MAHINDRA(MBT) PAPER ON 11th JULY 06 AT K.J SOMAIYA COLLEGE OF ENGG. MUNBAI
hi friends this is sunny,got selected in tech mahindra on 17 july 2006
The test duration was 1 hour. It consisted of 75 questions as follows:
1.general english(35 questions)
1. (10) fill in the blanks without options on preposition,article and tenses.(very easy)
2. […]

TechMahindra(MBT) Paper - 4 November 2006

TECH MAHINDRA PAPER ON 4th NOVEMBER KOLKATA
HI, friendz.I’m Amitava from Kolkata.It was an Off Campus drive for 2006 freshers batch. The aptitude was not so tough, but the buzzword was ‘TIME’…they will give u very little time to do these.u will be given one hour, and u need to answer 70 questions. There […]

TechMahindra(MBT) Selection Procedure

Hi ,This is the latest pattern of MBT.
Total time :- 1 hr
Section A:- 35 questions (General English) -Scoring
Section B:- 20 questions Series (Number and Diagram series) -Tough
Section C:- 20 questions Quatitatve Aptitude(All questions from R.S.Aggarwal )
There is no strict time limit on each section.You can start from any section.
There is negative marking of .25, remember […]

General - Techmahindra

MBT - Question paper - 02 Conducted On — 2003
__________________________
Section-1. Passage (10 min reading ,5 questions)
Section-2. English (error finding,15 questions)
Section-3. Number series (Letter series also)
Section-4. Analytical ability (5 questions)
Section-5 Numerical ability (additions,multiplications etc)
note: -marking 1:1
Intergraph:paper pattern only
________________________________
Analytical. 1.seating arrangement
2.Inferences
(Ref. GRE book)
C-language. 48 questions - 45 min.
1. Diff.between inlinefunction((++)-macns(c)
2. 3 to 4 questions on conditional […]

Technical - C & C++

C-Test Paper
1. #include
* What is wrong in the following problem
main() {
int i,j;
j = 10;
i = j++ - j++;
printf(”%d %d”, i,j);
}
ans: 0, 12
2.#include
* What is the output of the following problem
main() {
int j;
for(j=0;j<3;j++)
foo();
}
foo() {
static int i = 10;
i+=10;
printf(”%d\n”,i);
}
/* Out put is (***since static int is used i value is retained between
* 20 function calls )
* 30
* […]