Thursday, November 30, 2006

Some Job Sites Please Apply

Advertising Jobs India http://www.advertisingjobs-india.com/

Provides career guidance for jobs in the advertising industry.



Career Campus http://www.careercampus.net/


Information on courses, colleges, and online material to help personal development and change.



CareersIndia.com http://www.careersindia.com/

Online career resources for students, job seekers, educational institutions, and businesses.



Civil Service Examinations http://www.geocities.com/indiancivilservices/

Information on the examinations and tips for taking them.




CoolAvenues http://www.coolavenues.com

Features free resume posting, jobs search, information about companies, MBA institutes, on-line tests, and venture capitalists.




eVidyarthi.com http://www.evidyarthi.com/careers/career.asp

Provides information about online exams, colleges, about studying abroad, and other career tips. Also includes resume posting, and jobs searching feature.



IAS Portal http://geocities.com/iasportal


Includes details of civil service examinations, requirements and eligibility, examination, interview and application procedures.



Planyourcareer.com http://www.planyourcareer.com

Website to aid in building a career. Information on universities, colleges, and courses. Requires registration and login.


Flextronics Test Pattern

Test Consist of 7 Sections.For every section they Will give you some amount of time.After that time slot, they will collect the Question Papers From you. No Negative Marks.......

SECTION 1 : Verbal Ability

No Of Qns : 15
No Of Mins : 15

Qns From (1-10) : Combination of Fill up the blanks & Synonyms
Qns From (11-15): Passage Reading ( Qns from that Given Passage)

SECTION II : Analytical Ability

No of Qns : 15
No of Mins : 20

Qns From (16-30) : Combinations of Set theory,Percentage,Cubes,Probability Better Be Familiar with R.S.Agarwal matterials for Clearing this section.

SECTION III : Mental Ability (Very Easy)

No Of Qns : 15
No of Mins : 15

Qns From (31-35) : Pattern Matching E.g AsHraf aSHraf Ashhraaf We have to check and tick the correct answers whether all three datas are same or different.
Qns From (36-40) : Simple Maths like if * stands for +,- stands for/ then what is 2/5*8-8= ?
Qns From (41-45) : Passage and some condtions will be there,We have to tick The Answers depends upon the conditions

SECTION IV : Operating Systems,Data Structures and Algorithims

No Of Qns : 15
No Of Mins : 20

Qns From (46-52) : Data Structures (Mainly Linked List,Tree,Queue.
etc..)

Qns From (53-60) : Operating System Concepts

SECTION V : C or C++ Programming (Its Our Choice)

No of Qns : 20
No of Mins : 20

I have selected C ,Most of the Questions are from Pointers. so Please Be thorough With Pointer Concepts.

SECTION VI : Learning Ability

No of Qns : 10
No of Mins : 15

In this Section,First they will give you one Passage, You have to Read and memorize the Important Poits in 10 mins,

B"coz After 10 Mins they Will Collect that paper from you. Then only They will give you 10 Questions.In this Section they are checking Candidates Grasping Power & Memory Capacity.

SECTION VII : Essay Writing

No Of Mins : 5 Mins.
In this Section They will give you One Situation, For that Situation You have to Write an Essay ,Maximum of 100 WOrds.

You should be thorough with technical conceptes. Then only you can clear the test. This is because every section has a cutoff.

Flextronics Company Profile

Flextronics (former Hughes), a world-leading provider of digital television entertainment, broadband services, satellite-based private business networks, and video and data broadcasting, reported revenues of $8.9 billion in 2002.

HNS, a unit of Flextronics, is the world's largest provider of broadband satellite network solutions for businesses and consumers, with over 400,000 systems installed in more than 85 countries.

With the opening of the Indian economy in the early nineties, Flextronics was attracted by the long-term potential of outsourcing and chose to set up a subsidiary in India to supplement HNS' R&D efforts.

HSS began its operations in New Delhi with a team of about 20 professionals and was initially focused on developing software solutions in the areas of VSAT-based networks for voice and data, cellular wireless telephony, packet switching and multi-protocol routing. Within three years, HSS grew to 240 professionals and in 1995, shifted to its present campus at Electronic City, Gurgaon, a New delhi suburb. Today, over 2500 professionals work on cutting edge technologies at six state-of-the-art facilities near New Delhi, Bangalore, India's silicon valley and Nuremberg, Germany.

HSS offers career opportunities in leading technology areas like voice over packet,high speed mobile data, professional services for wireless networks, switching and network management. Sounds challenging? Explore an exciting career with us. Working at HSS is a distinct experience. HSS is not just about work, its a way of life! Read what some HSSians have to say about being a part of TEAM HSS.

For more Information visit: www.hssworld.com

Wednesday, November 29, 2006

IBM Paper3 technical

Q). PS1 pwd
export PS1 results in
a). your primary prompt being your current directory
b). " " and secondary prompts being the current dir
c). " " prompt being your home dir
d). " " and secondary prompts being the home dir
e). None of the above.

Q). If you type in the command
nohup sort employees > list 2 > error out &
and log off ,the next time you log in . the output
will be
a). in a file called list and the error will de typed in
a file error out
b). there will be no file called list or error out
c). error will be logged in a file called list and o/p
d). you will not be allowed to log in
e). none of the above

Q). In UNIX a files i-node
a)is a data structure that defines all specifications
of a file like the file size ,number of lines to a
file ,permissions etc.
b).----
c). - - - --
d). _ _ _
( ans is ---------(a) )

Q). The UNIX shell is..
a).does not come with the rest of the system
b).forms the interface between the user and the kernal
c) does not give any scope for programming
d) deos not allow calling one program from with in another
e) all of the above
(ans is (b) )

Q).enum number { a=-1, b= 4,c,d,e}
what is the value of e ?

7,4,5,15,3
(ans is 7 ) check again
Q).The very first process created by the kernal that runs
till the kernal process is haltes is
a)init
b)getty
c)
d)
e)none
(Ans is a)

Q) Result of the following program is
main()
{
int i=0;
for(i=0;i<20;i++)
{
switch(i)
case 0:i+=5;
case 1:i+=2;
case 5:i+=5;
default i+=4;
break;}
printf("%d,",i);
}
}
a)0,5,9,13,17
b)5,9,13,17
c)12,17,22
d)16,21
e)syntax error
(Ans is d )

Q) What is the result
main()
{
char c=-64;
int i=-32
unsigned int u =-16;
if(c>i){
printf("pass1,");
if(c
printf("pass2");
else
printf("Fail2");}
else
printf("Fail1);
if(i
printf("pass2");
else
printf("Fail2")
}
a)Pass1,Pass2
b)Pass1,Fail2
c)Fail1,Pass2
d)Fail1,Fail2
e)none
(Ans is c)

Q) In the process table entry for the kernel process, the process id value is
a) 0 b) 1 c) 2 d) 255 e) it does not have a process table entry
Ans) a

Q) Which of the following API is used to hide a window
a) ShowWindow
b) EnableWindow
c) MoveWindow
d) SetWindowPlacement
e)None of the above
Ans) a

Q) what will the following program do?
void main()

{
int i;
char a[]="String";
char *p="New Sring";
char *Temp;
Temp=a;
a=malloc(strlen(p) + 1);
strcpy(a,p); //Line no:9//
p = malloc(strlen(Temp) + 1);
strcpy(p,Temp);
printf("(%s, %s)",a,p);
free(p);
free(a);
} //Line no 15//
a) Swap contents of p & a and print:(New string, string)
b) Generate compilation error in line number 8
c) Generate compilation error in line number 5
d) Generate compilation error in line number 7
e) Generate compilation error in line number 1
Ans) b

Q) In the following code segment what will be the result of the function,
value of x , value of y

{
unsigned int x=-1;
int y;
y = ~0;
if(x == y)
printf("same");
else
printf("not same");
}

a) same, MAXINT, -1
b) not same, MAXINT, -MAXINT
c) same , MAXUNIT, -1
d) same, MAXUNIT, MAXUNIT
e) not same, MAXINT, MAXUNIT
Ans) a

Q) PATH = /bin : /usr : /yourhome
The file /bin/calender has the following line in it
cal 10 1997
The file /yourhome/calender has the following line in it
cal 5 1997
If the current directory is /yourhome and calender is executed

a) The calendar for May 1997 will be printed on screen
b) The calendar for Oct 1997 will be printed on screen
c) The calendar for the current month( whatever it is) will be printed
d) Nothing will get printed on screen
e) An error massage will be printed

Q) what will be the result of the following program ?
char *gxxx()
{
static char xxx[1024];
return xxx;
}
main()
{
char *g="string";
strcpy(gxxx(),g);
g = gxxx();
strcpy(g,"oldstring");
printf("The string is : %s",gxxx());

} a) The string is : string
b) The string is :Oldstring
c) Run time error/Core dump
d) Syntax error during compilation
e) None of these
Ans) b

Q) What will be result of the following program?
void myalloc(char *x, int n)

{ x= (char *)malloc(n*sizeof(char));
memset(x,\0,n*sizeof(char));

} main()
{ char *g="String";
myalloc(g,20);
strcpy(g,"Oldstring");
printf("The string is %s",g);

} a) The string is : String
b) Run time error/Core dump
c) The string is : Oldstring
d) Syntax error during compilation
e) None of these
Ans) c ( check it )

Q) which of the following function is used to repaint a window immediately
a) Sendmessage(hWnd,WM_PAINt,..)
b) InvalidateRect(..)
c) MoveWindow
d) WM_COPY
e) None

Q) which function is the entry point for a DLL in MS Windows 3.1
a) main
b) Winmain
c) Dllmain
d) Libmain
e) None

Ans) b

Q) The standard source for standard input, standard output and standard error is
a) the terminal
b) /dev/null
c) /usr/you/input, /usr/you/output/, /usr/you/error respectively
d) NOne
Ans) a

Q) What will be the result of the following program?
main()
{
char p[]="String";
int x=0;
if(p=="String")
{
printf("Pass 1");
if(p[sizeof(p)-2]=='g')
printf("Pass 2");
else
printf("Fail 2");
}
else
{
printf("Fail 1");
if(p[sizeof(p)-2]=='g')
printf("Pass 2");
else
printf("Fail 2");
}
}

a) Pass 1, Pass 2
b) Fail 1, Fail 2
c) Pass 1, Fail 2
d) Fail 1, Pass 2
e) syntax error during compilation

Q) Which of the choices is true for the mentioned declaration ?
const char *p;
and
char * const p;
a) You can't change the character in both
b) First : You can't change the characterr &
Second : You can;t change the pointer
c) You can't change the pointer in both
d) First : You can't change the pointer &
Second : You can't chanage the character
e) None
Ans) b ( check it)

Q) The redirection operators > and >>

a) do the same function
b) differ : > overwrites, while >> appends
c) differ : > is used for input while >> is used for output
d) differ : > write to any file while >> write only to standard output
e) None of these
Ans) b

Q) The command
grep first second third /usr/you/myfile

a) prints lines containing the words first, second or third from the file /usr/you/myfile
b) searches for lines containing the pattern first in the files
second, third, and /usr/you/myfile and prints them
c) searches the files /usr/you/myfiel and third for lines containing
the words first or second and prints them
d) replaces the word first with the word second in the files third and /usr/you/myfile
e) None of the above
Ans) b

IBM Paper3 non technical

1. In 1978, a kg of paper was sold at Rs25/-. I f the paper rate increases at 1.5% more than inflation rate which is of 6.5% a year, then what wil be the cost of a kg of paper after 2 years?
a)29.12 (b) 29.72 (c) 30.12 (d) 32.65 (e) none of these

2. In A,B,C are having some marbles with each of them. A has giben B and C the same number of marbles they already have to each of them. then, B gave C and A the same no. of marbles they have, then C gave A and B the same no. of marbles they have. At the end A,B,and C have equal no. of marbles.
(i) If x,y,z are the marbles initially with A,B,C respectively.
then the no of marbles B have at the end
(a) 2(x-y-z) (b) 4(x-y-z) etc.

(ii)If the total no. of marbles are 72, then the no. of marbles with A at the starting
a. 20 b. 30 c. 32

3. If a car starts from A towards B with some velocity due to some problem in the engine after travelling 30km.If the car goes with 4/5 th of its actuval velocity the car reaches B 45min later to the actual time. If the car engine fails ofter travelling 45km, the car reaches the destination B 36min late to the actual
time, what is the initial velocity of car and what is the distance between A and B in km
ans) 20 & 130.

4. A person has Rs 100/- in his pocket, he can as 25 pencils or 15books.
He kept 15% of the money for travelling expenses and purchased 5 pencils.So how many books he can purchase with the remaining money.

5. ten questions on analogies.
ex: hammer : carpenter ::
knife : butcher.

6. The values of shares A,B and C from january to june are as follows.
month A B C
JAN 30 60 80
FEB 35 65 85
MAR 45 75 65
APR 40 75 82
MAY 55 75 85
JUNE 50 75 80

i) During this period which share has undergone max fluctuation?
ii) In which month it is possible to buy B and C selling A?
iii) In which month the share values are very low?
iv) By purchasing one share of A and 4 each of B and C in the beginning
of the period , to get max profit when this shares should be sold?
v) ?

7. In a computer institute 9 languages can taught. The module is of 6 months duration and only six languages each of one month can be taught. In addition to that BASIC is always there and should be in first month itself
# word perfect is to be taught in the preceeding week of word star.
# FORTRAN can not be taught until COBAL is coarsed prior to that
# BINO, FIFO never be taught in single module
languages are BASIC, WORD STAR, WORD PERFECT, FORTRAN, COBAL, BINO, FIFO, LOTUS, C

i. Of the following which module is possible based on above conditions.
ii) If word star is in 3rd month , what could be in 6th month.
iii) If COBAL is in the 2nd month and BINO in 6th month are there
in addition to the above condition, FORTRAN will be in which month.

8. In a class , except 18 all are above 50 years. 15 are below 50 years of age. how many people are there
a) 30 b) 33 c) 36 d) none of these.

9. A square plot of some size , at four corners equal squares of some size are cut and is formed as open box. If this open box carries 128ml of oil. What is the size of the plate i.e. side
a.17 b.14 c.13

10. In a square , all the mid points are joined. the inner square is shaded. If the area of the square is A, what is the shaded area?

11. two questions on basic angles i.e given a circle, a few chords or diameter is drawn etc.

12. @(a,b)= (a+b)/2
/(a,b)= a.b
*(a,b)= ab , if a=1, b=2 find
i) /(a,(@(a,b),*(a,b)))
ii)

13. (x#y) = x+y-xy
(x*y) = (x+y)/2
i) (x#y)#(x*y) < (x#y), which of the below values of x, y will satisfy this equation
ii) (a*b)#(b*c)< (a#b)*(b*c) , what values of a,b,c satisfy the above.

IBM Paper2

ALL THESE ARE MEMORY BASED PAPERS

1.7^253. last digit?
ans. 7

2.10^10^10 how much time will it take to write thsi number,if it takes 1 sec to write 1 digit.
-1000 secs.
-10 year.
-more than 1 million years.
-a few days.
ans. more than 1 million years.

3. starting from 2 upto how many numbers we need to check whether 907 is prime or not?

4. a persons age is similar to the year he was born(last two digits is counted as age).ans. 80.

5. what is YACC? ans. yet another compiler compiler.

6. flop is a unit of ? ans. processing speed.

7.#define hello(x,y) printf(#expr"%d",expr);
main(){
float x=1,y=2;
expr=x/y;
hello(expr);
}
ans. x/y=1;

8.time and work and days.(easy questions).

9.A&B fill 3 litres and 5 litres of oil in the car. C pays Rs. 8/- to A7B. How much will A get?

10. a question on "set" theory.it was given that less than 30 persons in class.(Ans . cannot be determined.).

11. 4 cows are there at the four corners of a square. if the radius of the rope is 1 and lenth of one side of the square is 14, find the area along the square which the cow cannot gaze.
ans. 14*14-pi*r*r;

12. two glasses were filled with 1/3 and 1/4 milk. they were filled with water &then mixed in tumbler. what is the percentage of milk in the resultant.

13 average speed 2xy/x+y.

14. A belongs to the truther tribe " who says yes". B belongs to the liers tribe " who says no always".when A&B were asked to which group do they belonged to both of them replied "yes".when a third person C was asked whether A&B belong to same group,he notified groups he answered "No".to which group do A,B and C belong? ans.LLL or LTT.

15.There were three clocks they gave alarm after 24secs, 12secs and 36 secs.if they rang simulatneously at 8:20, then at what time they again rang simultaneously?(something like this but numbers may differ). ans. 8:27:12

16.a plane starts from a place A , it goes 1000 kms south then 1000km east then 1000 km north and 1000km west, what is it distance from the starting place? ans.same starting place.

17.question on Bipartite graph(definition).

18.heap-sorting algorithm time complexity.(ans nlogn)

19.white-box testing.

20.postfix evaluation of: (A+B)*C(Ans: AB+C*)

21.question on catch-throw? c++

22.parity bit?(Ans: as error detection).

23.main(){
main();
}
ans.stack overflow.

24.main()
{ char a,b;
printf("%d%d%d%d",sizeof('a');
sizeof(NULL),sizeof(b),sizeof(main));

} Ans(1,1,1,2)

25.five file sizes given . what should be the order of their access so that least time is taken.
ans.least size first.

26. SQL query does what?

27. 5 questions on reasoning.

Monday, November 27, 2006

IBM Paper1

1. Speed of boat in still water is 10kmph..if it travels 24km downstream,16km upstream in the same
amount of time,what is the speed of the stream?
(a)3kmph
(b)3.5kmph
(c)2kmph
(d)...
2. A cube of 3 units is painted on all sides.If this cube is divided into cubes of 1 unit,how many cube
have none of their faces painted?
(a)..
. (b)2
(c)1
(d)0
(e)none of these
3. If a person sells a product for rs141/- he suffers a loss of 6%.if he has to have a profit of 10%,
at what price should he sell it?
(a)
(b)rs.175
(c)..
(d)rs.165
ans.rs.165 (i think,check)
4. A ball falls from a height of 8ft ,bounces back to half the distance & continues till it comes to rest.
what is the total distance travelled by the ball?
(a)24ft
(b)...
(c)infinite
(d)cannot be determined
ans:(a)
5. Which of the following is the sum of 3 consecutive prime nos?
(a)49
(b)59
(c)both a &b
(d)...
. ans:c
6. If the area of a square has increased by 69%,by what % has its side increased?
7. In a class the average age is 16yrs.if the teacher who is 40 yrs of age is also included ,the average becomes
17yrs,how many students were there?
8. If 3 houses are to be painted,mr A can paint a house in 6 days(nos are not same)...mr B can do the same in 8

days...& mr.C in 12 days.if mr A does the work for 8 days & leaves for vacation, & mr B continues the work
for the next 6 days, for how many days should mr.C work?
ans:11 days(check)
9. 4 thieves rob a bakery of the breadone after the other.each thief takes half of what is present ,& half a

bread...if at the end 3 bread remains,what is the no of bread that was present initiallly?
ans:63(check)
10. If the 1rst day of 1999 is a sunday,what is the last day?
(a)sunday
(b)monday
(c)....
(d)cannot be determined.
11. If A driver drives a car four times a lap 10,20 30,60 kmph what is his average speed.

ans:20kmph
In a group there are two kinds of people type A & type B.type A people answer for any question as YES &

that of type B as NO.if they can not answer to these question then they remain silent. the mayor asks question to

them as follows........
12. If he asks a person are u type A
a.YES b.NO c. Silent d.Can not be determined
13. He asks two persons X &Ysimultaneously whether u of same type
a. YES b. NO c.YES or NO d. Silent e. can not be determined
14. Pointing to a person X he asks Y what is his type

a. YES b. No c. Silent d can not be determined
15. Pointing to a person X he asks Y if I ask him whether r u type A ,will he answer YES.Y says NO .what type

of B is
a. YES b. NO . c. Silent d. can not be determined
16. Six squares of same dimension are kept side by side to make a rectangle with a perimeter of 182 cm. what is

the perimeter of each square.
ans) 52.
17. One student takes 20 mins to reach school if he goes at a speed of 15kmph .At what speed should he go to

reach in 15 mins ( nos are not same) ans: 16kmph( check)
18. How many rational numbers are there between 0 & 5
ans:infinite
19. A certain number of bullets were shared by 3 people equally.Each of them fired 4 bullets and the sum of the

remaining bullets was equal to the initial share each had got.what was the initial number of bullets?
ans:18..( 18/3=6;
6-4=2,6-4=2,6-4=2;
2+2+2=6=ans)
Technical:
20. A trigger is
(a) a statement ..start of database..
(b)statements that r executed as a side effect to the modification to the database
(c)...
(d)...
ans (b)
21. What does the following statement mean?
int (*a)[4]
(a)'a' is a pointer to an array of 4 integers
(b)'a' is an array of pointers to integer
(c)'a' is a pointer to function returning an integer
(d)...
ans:a
22. Best method to find out whether a given array already sorted,is sorted or not in min. time
ans. insertion sort (check)
23. A primary key in one table also present in some other table is called
(a)foreign key
(b)secondary key
(c)subordinate key

(d)...
ans. foreign key
24. Which of the following is a real time system?
(a)robotics control
(b)airline ticket reservation(ans)
(c)
(d)...
25. A question to convert a big no in decimal to octal(check only for the last 2 nos in ans is sufficient)
26. Which of the following is an example of a spooling device?
(a)..
(b)line printer.
. (c)
(d)
(e)...
27. If in a table:account no,account holders name,account type ,.....(something else was given)are the fields,which

of them could be the primary key?
(a)account no(ans)
(b)account holders name
(c)account type
(d)..
28. If a file is opened in "r+" mode(in C),it means
(b)read
(c)...
(d).....
29. What is the difference between 123 and 0123 in c?
(a)120
(b)40
(c)0
(d)...
ans:40
30. Software Configuration Management process is -
(a)developing & managing software for .....software..
.. (b)developing & managing hardware for....software.......
(c)...
(d)..
31. Data Integrity constraint is
(a)to ensure the presence of primary key
(b)...
(c)...
(d)...
32. Which of the following uses the minimum length of cable?
(a)ring
(b)star
(c)mesh
(d)bus
(e)all of the above
31. How can u append the ls and who to certain existing file (like that)(i.e.listing & output of who is to be directedto a file
(a)ls;who>filename
(b)ls;who>>filename
(c)(ls;who)>>filename
(d)who;ls
(e)...
34. Suppose u have a network .users complain of slow ....u suspect a problem in network adapter once u find that

the data is continuous and erroneous.what device do u use?
(a)volt-ohmmeter
(b)SNMP
(c)protocol... checking
(d)all of the above
35. What is vector processing?
36. x-=y+1 is equivalent to what?
(a)x=x-y+1
(b)...
(c)x=x-y-1
(d)...
ans:(c)
37. In a student form what is the relationship b/w student and course
(a)one to one
(b)many to one
(c)one to many
(d)many to many
38. ROM is
(a)volatile
(b)permanent & fast
(c)device containig boot up program & is not accessible
(d)...

IBM Company Profile

  • Written Test
    The written test consists of two sections each of 45 minutes duration.

    Section#1
    This is the aptitude section consisting of 45 questions to be attempted in 45 minutes. As is in all the exams, this section is based on the MBA pattern of examination.

    Section#2
    This is the technical section. There is a separate paper for hardware and software. Candidates have to mention beforehand whether they want to write the software or the hardware paper.
    This section also carries 45 questions to be completed in 45 minutes.

    We are providing you with some of the questions asked in the exam, so that you have an idea of what to expect in the written test.

  • Interview
    There are two rounds of interviews, viz., the technical and and theHR round.

    Technical and Personal Round for Software Candidates
    Mainly subjective questions in C, Operating Systems, DBMS, Data Structures are asked interspersed with some on the candidate's personal background.

    Typical questions in C and Data Structures
    1.WAP to interchange 2 variables without using the third one.
    2.Explain quick sort and merge sort algorithms amn derive the time-constraint relation for these.
    3.Explain binary searching, fibonacci search.
    4.General questions on binary trees, transversals
    5.General questions on graphs and their representation.


    Typical Questions on Operating Systems
    1.Demand paging, page faults, replacement algos, thrashing, etc.
    2.Paged segmentation and segment paging.

    In this section, case studies are presented are presented before the candidate to percieve his reaction and his/her communication skills are tested . IBM expects teamwork and teamspirit from the candidates and their answers should reflect this attitude.

    Typical question is
    You are a project manager of a big multinational project. There is a person X, assigned to you who has the best technical skills required for the project, even better than you. But he wishes to be the project manager ,which the management does not permit, due to which he threatens to quit. All others in the group are not as competent. Talk yourself out of this situation pretending that the interviewer is the disgruntled employee and explain the necessary action.

  • Profile

    IBM strives to lead in the creation, development and manufacture of the industry's most advanced information technologies, including computer system, software, networking systems, storage devices and microelectronics. IBM brings its products and services through IBM India and IBM Global Services.

    IBM India's product portfolio includes the IBM PC, Aptiva home computer ThinkPad portables, RS/6000, AS/400e, S/390 and Netfinity servers, network computers, printers, networking and storage products. IBM's software offerings include DB2, Lotus, Tivoli, MQ Series and a range of Internet software like WebSphere and SecureWay.

    India is also home to two select IBM centers - the IBM Solutions Research Center at New Delhi and the Solutions Partnership Center (SPC) at Bangalore. The SRC (only the eighth of its kind across the globe) is an extended arm of IBM Research activities. As part of IBM's global research infrastructure, the SRC participates in path breaking research projects for IBM worldwide. The Solutions Partnership Center at Bangalore is a part of IBM's developer relations focus for India. The SPC is a showcase of IBM technology and a testing and porting lab for application software developers.

The current pay package is around Rs. 20,000 . IBM is on spree of increasing its male/female ratio in its workforce hence female candidates are being given a slight advantage over their male counterparts.

For more information about this company visit their homesite at www.ibm.com


MBT HR interview questions

H R Interview

  1. Tell me about your self ? Family background ?

  2. Why do u want to join MBT?

  3. What qualities do u have to be selected today ?

  4. What technical skills have u acquired? hobbies/interests ?

  5. what do u know abt MBT

  6. will u have any problems relocating to Mumbai/Pune ?

  7. Any plans of higher studies ? ( Again a solid NO!)

  8. which was the last book u read?what did u like in it ?

  9. Tell me about the ups and downs that u have seen in ur life

  10. would you marry a pop star?

  11. Are you interested in politics? did u vote this time ? do u think we should vote ?

  12. Do you read newspaper?tell me 2 recent incidents in news that have affected You?

  13. If u r standing on the roof with ur 4-5 yr old bro/sis and looking at the moon and suddenly the moon is
    enveloped by clouds and ur bro asks u what happned? then how will u explain the hiding of moon behind the clouds to him ?

  14. In the end they asked if there was something that I wanted to ask them ?

Sunday, November 26, 2006

Arithematic & logical Reasoning

1. If a boat is moving in upstream with velocity of 14 km/hr and goes downstream with a velocity of 40 km/hr, then what is the speed of the stream ?

(a) 13 km/hr
(b) 26 km/hr
(c) 34 km/hr
(d) none of these
Ans. A
2. Find the value of ( 0.75 * 0.75 * 0.75 - 0.001 ) / ( 0.75 * 0.75 - 0.075 + 0.01)

(a) 0.845
(b) 1.908
(c) 2.312
(d) 0.001
Ans. A
3. A can have a piece of work done in 8 days, B can work three times faster than the A, C can work five times faster than A. How many days will they take to do the work together ?

(a) 3 days
(b) 8/9 days
(c) 4 days
(d) can't say
Ans. B
4. A car travels a certain distance taking 7 hrs in forward journey, during the return journey increased speed 12km/hr takes the times 5 hrs.What is the distance traveled

(a) 210 kms
(b) 30 kms
(c) 20 kms
(c) none of these
Ans. B
5. Instead of multiplying a number by 7, the number is divided by 7. What is the percentage of error obtained?
6. Find (7x + 4y ) / (x-2y) if x/2y = 3/2 ?

(a) 6
(b) 8
(c) 7
(d) data insufficient
Ans. C
7. A man buys 12 lts of liquid which contains 20% of the liquid and the rest is water. He then mixes it with 10 lts of another mixture with 30% of liquid.What is the % of water in the new mixture?

8. If a man buys 1 lt of milk for Rs.12 and mixes it with 20% water and sells it for Rs.15, then what is the percentage of gain?

9. Pipe A can fill a tank in 30 mins and Pipe B can fill it in 28 mins.If 3/4th of the tank is filled by Pipe B alone and both are opened, how much time is required by both the pipes to fill the tank completely ?
10. If on an item a company gives 25% discount, they earn 25% profit. If they now give 10% discount then what is the profit percentage.
(a) 40%
(b) 55%
(c) 35%
(d) 30%
Ans. D
11. A certain number of men can finish a piece of work in 10 days. If however there were 10 men less it will take 10 days more for the work to be finished. How many men were there originally?

(a) 110 men
(b) 130 men
(c) 100 men
(d) none of these
Ans. A
12. In simple interest what sum amounts of Rs.1120/- in 4 years and Rs.1200/- in 5 years ?
(a) Rs. 500
(b) Rs. 600
(c) Rs.800 (d) Rs. 900
Ans. C
13. If a sum of money compound annually amounts of thrice itself in 3 years. In how many years
will it become 9 times itself.

(a) 6
(b) 8
(c) 10
(d) 12
Ans A
14. Two trains move in the same direction at 50 kmph and 32 kmph respectively. A man in the slower train
observes the 15 seconds elapse before the faster train completely passes by him.
What is the length of faster train ?

(a) 100m
(b) 75m
(c) 120m
(d) 50m
Ans B
15. How many mashes are there in 1 squrare meter of wire gauge if each mesh
is 8mm long and 5mm wide ?

(a) 2500
(b) 25000
(c) 250
(d) 250000
Ans B
16. x% of y is y% of ?

(a) x/y
(b) 2y
(c) x
(d) can't be determined
Ans. C
17. The price of sugar increases by 20%, by what % should a housewife reduce the consumption of sugar so that expenditure on sugar can be same as before ?

(a) 15%
(b) 16.66%
(c) 12%
(d) 9%
Ans B
18. A man spends half of his salary on household expenses, 1/4th for rent, 1/5th for travel expenses, the man deposits the rest in a bank. If his monthly deposits in the bank amount 50, what is his monthly salary ?

(a) Rs.500
(b) Rs.1500
(c) Rs.1000
(d) Rs. 900
Ans C
20. The population of a city increases @ 4% p.a. There is an additional annual increase of 4% of the population due to the influx of job seekers, find the % increase in population after 2 years ?
21. The ratio of the number of boys and girls in a school is 3:2 Out of these 10% the boys and 25% of girls are scholarship holders. % of students who are not scholarship holders.?
22. 15 men take 21 days of 8 hrs. each to do a piece of work. How many days of 6 hrs. each would it take for 21 women if 3 women do as much work as 2 men?

(a) 30
(b) 20
(c) 19
(d) 29
Ans. A
23. A cylinder is 6 cms in diameter and 6 cms in height. If spheres of the same size are made from the material obtained, what is the diameter of each sphere?

(a) 5 cms
(b) 2 cms
(c) 3 cms
(d) 4 cms
Ans C
24. A rectangular plank (2)1/2 meters wide can be placed so that it is on either side of the diagonal of a square shown below.(Figure is not available)What is the area of the plank?
Ans :7*(2)1/2
25. The difference b/w the compound interest payable half yearly and the simple interest on a certain sum lent out at 10% p.a for 1 year is Rs 25. What is the sum?

(a) Rs. 15000
(b) Rs. 12000
(c) Rs. 10000
(d) none of these
Ans C
26. What is the smallest number by which 2880 must be divided in order to make it into a perfect square ?

(a) 3
(b) 4
(c) 5
(d) 6
Ans. C
27. A father is 30 years older than his son however he will be only thrice as old as the son after 5 years
what is father's present age ?

(a) 40 yrs
(b) 30 yrs
(c) 50 yrs
(d) none of these
Ans. A

28. An article sold at a profit of 20% if both the cost price and selling price would be Rs.20/- the profit would be 10% more. What is the cost price of that article?
29. If an item costs Rs.3 in '99 and Rs.203 in '00.What is the % increase in price?

(a) 200/3 %
(b) 200/6 %
(c) 100%
(d) none of these
Ans. A

LOGICAL SECTION
Directions: For questions 30-39 fill the missing number or letter in the given series
30. a, c, e, g, _

(a) h
(b) i
(c) d
(d) j
Ans. B

31. a, e, i, m, q, u, _, _

(a) y,c
(b) b,f
(c) g,i
(d) none
Ans. A
32. ay , bz , cw , dx ,__

(a) gu
(b) ev
(c) fv
(d) eu
Ans. D
33. 2, 3, 5, 7, 11, __

(a) 15
(b) 9
(c)13
(d) 12
Ans. C (series of prime numbers)
*34. kp , lo , mn , __

(a) nm
(b) np
(c) op
(d) pq
Ans. A
35. R,M,__,F,D,__

(a) I, C
(b) A, Q
(c) L, N
(d) B, Q
Ans. A
36. ___, ayw, gec, mki, sqo

(a) awx
(b) usq
(c) prs
(d) lmn
Ans. B
37. 1, 3, 4, 8, 15, 27, __

(a) 60
(b) 59
(c) 43
(d) 50
Ans D
38. 0, 2, 3, 5, 8, 10, 15, 17, 24, 26,__

(a) 45
(b) 55
(c) 35
(d) 48
Ans. C
39. 2, 5, 9, 19, 37,__

(a) 64
(b) 55
(c) 75
(d) 40
Ans C
Directions for questions 40 to 45: Select the alternative that logically follows form the two given statements.
40. All scientists are fools. All fools are literates.

(a)All literates are scientists
(b) All scientists are literates
(c) No scientists are literates
(d) Both (a) and (b) are correct
Ans. B
41. No apple is an orange. All bananas are oranges.

(a) All apples are oranges
(b) Some apples are oranges
(c) No apple is a banana
(d) None of the above
Ans. A
42. All pens are elephants. Some elephants are cats.

(a) Some pens are cats
(b) No pens are cats
(c) All pens are cats
(d) None of the above
Ans. D
43. All shares are debentures. No debentures are deposits.

(a) All shares are deposits
(b) Some shares are deposits
(c) No shares are deposits
(d) None of the above
Ans. C
44. Many fathers are brothers. All brothers are priests.

(a) No father is a priest
(b) Many fathers are not priests
(c) Many fathers are priests
(d) Both (b) and (c)
Ans. B
45. Some green are blue. No blue are white.

(a) No green are white
(b) Some green are white
(c) No green are white
(d) None of the above
Ans. B
46. If the word "CODING" is represented as DPEJOH , then the word "CURFEW" can be represented?

(a) dvsgfx
(b) dvshfx
(c) dgshfx
(d) dtsgfy
Ans. A
47. If in a certain code "RANGE" is coded as 12345 and "RANDOM" is coded as 123678, then the code for the word "MANGO" would be

(a) 82357
(b) 84563
(c) 82346
(d) 82543
Ans. D
Directions for questions 48-50:The questions are based on the following data
In a class of 150 students 55 speak English;85 speak Telugu and 30 speak neither English nor Telugu
48. How many speak both English and Telugu?

(a) 10
(b) 15
(c) 20
(d) 12
Ans. C
49.How many speak only Telugu?

(a) 55
(b) 45
(c) 65
(d) none of the above
Ans.C
50.How many speak at least one of the two languages?

(a) 120
(b) 100
(c) 250
(d) 50
Ans. A

Apptitude in MBT

Aptitude

1. Which of the following statement(s) is(are) not true

a. Literate workers have small families than illiterate workers.
b. Families with 2 or less than 2 children are commoner than families
with 3 or more children.
c. 2 children families constitute 60% of the families of workers.
d. More the no. of children a worker has the more illiterate he is.
e. None the above statement is true.
Ans : e

2. ......of a mutual instrument vibrate 6,8 & 12 intervals
respectively. If all three vibrate together what is the time
interval before all vibrate together again?
LCM of NR
Ans : 1/2 sec

3. Certain no. of men can finish a piece of work in 10 days. If
however there were 10 men less it will take 10 days more for the
work to be finished. How many men were there originally.
Ans : 110 men

4. In simple interest what sum amounts of Rs.1120/- in 4 years and Rs.1200/- in 5 years.
Ans : Rs.800/-
5. Sum of money at compound interest amounts of thrice itself in 3 years. In how many years
will it take 9 times itself.
Ans : 6

7. Two trains in the same direction at 50 & 32 kmph respectively. A man in the slower train observes the 15 seconds elapse before the faster train completely passes him.
What is the length of faster train ?
Ans : 75m

8. How many mashes are there in a sq. m of wire gauge. Each mesh being 8mm long X 5mm width
Ans : 25000

9. x% of y is y% of ?
Ans : x

10. The price of sugar increases by 20%, by what % house-wife should reduce the consumption of sugar so that expenditure on sugar can be same as before
Ans : 16.66

11. A man spending half of his salary for house hold expenses, 1/4th for rent, 1/5th for travel expenses, a man deposits the rest in a bank. If his monthly deposits in the bank amount 50. What is his monthly salary ?
Ans : 1000

12. The population of a city increases @ 4% p.a. That is an additioanl annual increase of 4% of the population due to this influx of jobseeker, the % increase in population after 2 years is

13. The ratio of no. of boys & girls in a school is 3:2 Out of these ?% the boys & 25% of girls are scholarship holders. % of students who are not scholarship holders.?

14. 15 Men take 21 days of 8 hrs. each to do a piece of work. How many days of 6 hrs. each would do if 21 women take. If 3 women do as much work of 2 men.
Ans : 30

15. a cylinder ingot 6cms in diameter and 6 cms in height is and spheres all of the same
size are made from the material obtained.what is the diameter of each sphere?
Ans :3cms

16. rectangular plank of sqrt(2)meters wide can be placed so that it is on either side of the diagonal of a square shown below.what is the area of the plank?
Ans :7sqrt(2)
17. the difference b/w the compound interest payble half yearly and the simple interest on a
certain sum cont out at 10% p.a for 1 year is Rs 25 what is the sum
Ans:10,000
18. what is the smallest n0 by which 2880 must be divided in order to make it a perfect square ?
a)3 b)4 c)5 d) 6 e)8
Ans : c
19.a father is 30 times more than his son however he will be only thrice as old as the son
what is father's present age ?
Ans : 40

20. An article sold at a profit of 20% if both the c.p & s.p were to be Rs.20/- the profit would be 10% more. What is the c.p of that article?
Ans : 1% loss

Friday, November 24, 2006

MBT Papers

ARITHEMATIC SECTION

This section consists of 29 problems. The questions are simple though time consuming.

1. If a boat is moving in upstream with velocity of 14 km/hr and goes downstream with a velocity of 40 km/hr, then what is the speed of the stream ?

(a) 13 km/hr
(b) 26 km/hr
(c) 34 km/hr
(d) none of these

Ans. A

2. Find the value of ( 0.75 * 0.75 * 0.75 - 0.001 ) / ( 0.75 * 0.75 - 0.075 + 0.01)

(a) 0.845
(b) 1.908
(c) 2.312
(d) 0.001

Ans. A

3. A can have a piece of work done in 8 days, B can work three times faster than the A, C can work five times faster than A. How many days will they take to do the work together ?

(a) 3 days
(b) 8/9 days
(c) 4 days
(d) can't say

Ans. B

4. A car travels a certain distance taking 7 hrs in forward journey, during the return journey increased speed 12km/hr takes the times 5 hrs.What is the distance travelled

(a) 210 kms
(b) 30 kms
(c) 20 kms
(c) none of these

Ans. B

5. Instead of multiplying a number by 7, the number is divided by 7. What is the percentage of error obtained ?

6. Find (7x + 4y ) / (x-2y) if x/2y = 3/2 ?

(a) 6
(b) 8
(c) 7
(d) data insufficient

Ans. C

7. A man buys 12 lts of liquid which contains 20% of the liquid and the rest is water. He then mixes it with 10 lts of another mixture with 30% of liquid.What is the % of water in the new mixture?


8. If a man buys 1 lt of milk for Rs.12 and mixes it with 20% water and sells it for Rs.15, then what is the percentage of gain?


9. Pipe A can fill a tank in 30 mins and Pipe B can fill it in 28 mins.If 3/4th of the tank is filled by Pipe B alone and both are opened, how much time is required by both the pipes to fill the tank completely ?

10. If on an item a company gives 25% discount, they earn 25% profit. If they now give 10% discount then what is the profit percentage.

(a) 40%
(b) 55%
(c) 35%
(d) 30%

Ans. D

11. A certain number of men can finish a piece of work in 10 days. If however there were 10 men less it will take 10 days more for the work to be finished. How many men were there originally?

(a) 110 men
(b) 130 men
(c) 100 men
(d) none of these

Ans. A

12. In simple interest what sum amounts of Rs.1120/- in 4 years and Rs.1200/- in 5 years ?

(a) Rs. 500
(b) Rs. 600
(c) Rs. 800
(d) Rs. 900

Ans. C

13. If a sum of money compound annually amounts of thrice itself in 3 years. In how many years
will it become 9 times itself.

(a) 6
(b) 8
(c) 10
(d) 12

Ans A

14. Two trains move in the same direction at 50 kmph and 32 kmph respectively. A man in the slower train
observes the 15 seconds elapse before the faster train completely passes by him.
What is the length of faster train ?

(a) 100m
(b) 75m
(c) 120m
(d) 50m

Ans B

15. How many mashes are there in 1 squrare meter of wire gauge if each mesh
is 8mm long and 5mm wide ?

(a) 2500
(b) 25000
(c) 250
(d) 250000

Ans B

16. x% of y is y% of ?

(a) x/y
(b) 2y
(c) x
(d) can't be determined

Ans. C

17. The price of sugar increases by 20%, by what % should a housewife reduce the consumption of sugar so that expenditure on sugar can be same as before ?

(a) 15%
(b) 16.66%
(c) 12%
(d) 9%

Ans B

18. A man spends half of his salary on household expenses, 1/4th for rent, 1/5th for travel expenses, the man deposits the rest in a bank. If his monthly deposits in the bank amount 50, what is his monthly salary ?

(a) Rs.500
(b) Rs.1500
(c) Rs.1000
(d) Rs. 900

Ans C

20. The population of a city increases @ 4% p.a. There is an additional annual increase of 4% of the population due to the influx of job seekers, find the % increase in population after 2 years ?

21. The ratio of the number of boys and girls in a school is 3:2 Out of these 10% the boys and 25% of girls are scholarship holders. % of students who are not scholarship holders.?

22. 15 men take 21 days of 8 hrs. each to do a piece of work. How many days of 6 hrs. each would it take for 21 women if 3 women do as much work as 2 men?

(a) 30
(b) 20
(c) 19
(d) 29

Ans. A

23. A cylinder is 6 cms in diameter and 6 cms in height. If spheres of the same size are made from the material obtained, what is the diameter of each sphere?

(a) 5 cms
(b) 2 cms
(c) 3 cms
(d) 4 cms

Ans C

24. A rectangular plank (2)1/2 meters wide can be placed so that it is on either side of the diagonal of a square shown below.(Figure is not available)What is the area of the plank?

Ans :7*(2)1/2

25. The difference b/w the compound interest payble half yearly and the simple interest on a
certain sum lent out at 10% p.a for 1 year is Rs 25. What is the sum?

(a) Rs. 15000
(b) Rs. 12000
(c) Rs. 10000
(d) none of these

Ans C

26. What is the smallest number by which 2880 must be divided in order to make it into a
perfect square ?

(a) 3
(b) 4
(c) 5
(d) 6

Ans. C

27. A father is 30 years older than his son however he will be only thrice as old as the son after 5 years
what is father's present age ?

(a) 40 yrs
(b) 30 yrs
(c) 50 yrs
(d) none of these

Ans. A


28. An article sold at a profit of 20% if both the cost price and selling price would be Rs.20/- the profit would be 10% more. What is the cost price of that article?

29. If an item costs Rs.3 in '99 and Rs.203 in '00.What is the % increase in price?

(a) 200/3 %
(b) 200/6 %
(c) 100%
(d) none of these

Ans. A

LOGICAL SECTION

Directions: For questions 30-39 fill the missing number or letter in the given series

30. a, c, e, g, _

(a) h
(b) i
(c) d
(d) j

Ans. B


31. a, e, i, m, q, u, _, _

(a) y,c
(b) b,f
(c) g,i
(d) none

Ans. A

32. ay , bz , cw , dx ,__

(a) gu
(b) ev
(c) fv
(d) eu

Ans. D

33. 1, 2, 3, 5, 7, 11, __

(a) 15
(b) 9
(c) 13
(d) 12

Ans. C (series of prime numbers)

34. kp , lo , mn , __

(a) nm
(b) np
(c) op
(d) pq

Ans. A

35. R,M,__,F,D,__

(a) I, C
(b) A, Q
(c) L, N
(d) B, Q

Ans. A

36. ___, ayw, gec, mki, sqo

(a) awx
(b) usq
(c) prs
(d) lmn

Ans. B

37. 1, 3, 4, 8, 15, 27, __

(a) 60
(b) 59
(c) 43
(d) 50

Ans D

38. 0, 2, 3, 5, 8, 10, 15, 17, 24, 26,__

(a) 45
(b) 55
(c) 35
(d) 48

Ans. C

39. 2, 5, 9, 19, 37,__

(a) 64
(b) 55
(c) 75
(d) 40

Ans C

Directions for questions 40 to 45: Select the alternative that logically follows form the two given statements.

40. All scientists are fools. All fools are literates.

(a)All literates are scientists
(b) All scientists are literates
(c) No scientists are literates
(d) Both (a) and (b) are correct

Ans. B

41. No apple is an orange. All bananas are oranges.

(a) All apples are oranges
(b) Some apples are oranges
(c) No apple is a banana
(d) None of the above

Ans. A

42. All pens are elephants. Some elephants are cats.

(a) Some pens are cats
(b) No pens are cats
(c) All pens are cats
(d) None of the above

Ans. D

43. All shares are debentures.No debentures are deposits.

(a) All shares are deposits
(b) Some shares are deposits
(c) No shares are deposits
(d) None of the above

Ans. C

44. Many fathers are brothers. All brothers are priests.

(a) No father is a priest
(b) Many fathers are not priests
(c) Many fathers are priests
(d) Both (b) and (c)

Ans. B

45. Some green are blue. No blue are white.

(a) No green are white
(b) Some green are white
(c) No green are white
(d) None of the above

Ans. B

46. If the word "CODING" is represented as DPEJOH , then the word "CURFEW" can be represented?

(a) dvsgfx
(b) dvshfx
(c) dgshfx
(d) dtsgfy

Ans. A

47. If in a certain code "RANGE" is coded as 12345 and "RANDOM" is coded as 123678, then the code for the word "MANGO" would be

(a) 82357
(b) 84563
(c) 82346
(d) 82543

Ans. D

Directions for questions 48-50:The questions are based on the following data

In a class of 150 students 55 speak English;85 speak Telugu and 30 speak neither English nor Telugu

48. How many speak both English and Telugu?

(a) 10
(b) 15
(c) 20
(d) 12

Ans. C

49.How many speak only Telugu?

(a) 55
(b) 45
(c) 65
(d) none of the above

Ans.C

50.How many speak at least one of the two languages?

(a) 120
(b) 100
(c) 250
(d) 50

Ans. A

Refer R.S Agarwal books for more questions of the same kind

MBT Profile

  • Written Test

There are 105 questions to be done in 70 minutes. The test is further subdivided and includes

Quantitative Section (23Q)
Analytical Section (20Q)
Series& Venn Diagrams
Logical Section (20Q)
Reading Comprehension (10Q).
Flow Sheets

Time span for each section is different. There is negative marking. We think that the cut-off would have been around 35-40.
We recommend that you refer to RS Agarwal Verbal and Nonverbal book for more questions on the same pattern.

  • Interview

The interview is mostly HR kind with a few technical questions thrown in. Some easy software technical questions could be asked.

In the year 1988, Mahindra and Mahindra Ltd. and British Telecom plc. came together to form a joint venture called Mahindra British Telecom Ltd. (MBT). It started off by setting up a software development center for British Telecom in Mumbai. It recorded a revenue of US $ 54 million in the year 1999-2000. MBT today is the thirteenth largest software exports company in India. (source DQ top 20, 2000). Headquartered in Pune, MBT has state-of-the-art development centers in Pune, Mumbai and London with 14 marketing offices the world over.

MBT's key services include turnkey software projects, development and maintenance of software solutions, product development, IT consulting services, software re-engineering, application outsourcing, systems integration, facilities management, database conversion, internet based development, business process re-engineering, QMS management, etc. covering areas such as Telecom, Internet, E-Business and Mobile Computing.

MBT has a field strength of over 2000 professionals.

For more information about this company visit their homesite at www.mahindrabt.com

Wednesday, November 22, 2006

TCS - Placement Paper - 23 Sep 06 - BangaloreQuantitative Apptitude Section

QUANTITATIVE APTITUDE

1.In the word ORGANISATION if we exchange first with the second ,second with the third ,third with fourth and so on......till last then what will be the 10 letter from right?
1.G 2.N 3.A 4.R
Ans:A

2.What is the largest prime no that will fit in 6 bit memory?
1.65 2. 61 3. 67 4.63
Ans: 61
Approach: 2^6-1=63which is not prime
and the no less than 63 is 61 which is a prime......
4.In two dimensional array X(7,9) each element occupies 2 bytes of memory.If the address of first element X(1,1)is 1258 then what will be the address of the element X(5,8) ?
1.1460 2.1365 3. 1356 4.1370
Ans: 1365
Approach:1258+(4*9*2)+(8*2)
5
6.Which of the following highest Standard deviation
a.7, 0, 7,0, 7,0 b) 7, 7, 7,7,7,7 c) -7, - 7, -7,-7,-7,-7 d) -7, 7, -7, 7,-7, 7
Ans: d)

7..g(0)= 1, G(1)=-1 ,G(N) = G(N-1)+G(N-2) , g(5)=?
1. -2 2. 3 3. 1 4 0
Ans: -2
8.A power unit is there by the bank of the river of 900 mtr width. a cable is made from power unit to power a plant opposite to that of the river and 3000 mtr away from the power unit. The cost of the cable bellows water Rs5 / mtr and cost of cable on the bank is Rs 4/ mtr. Find the pt where the cable cut through the river.
1.2800 2. 3000 3. 2100 4.3900
Ans: 2100
9.In madras, temperature at noon varies according to -t^2/6 + 4t + 12, where t is elapsed time. Find how much tem more or less in 6 pm to 9 pm .
didn't get the correct ans........
Approach: substitute the given values....
( -6^2+4*6+12)-(-9^2+4*9+12)
10.The size of the bucket is N kb. The bucket fills at the rate of 0.1 kb per millisecond. A programmer sends a program to receiver. There it waits for 10 milliseconds / and response will be back to programmer in 20 millisecond. How many much time the program takes to get a response back to programmer, after it is sent?
Ans: 30 millisecond
11.Which of the following are orthogonal pairs a) 3i+2j b) i+j c) 2i-3j d) 7i+j
1.a&d 2.a&c 3.c&d 4.b&d
Ans: a&c

12.Which of the following do not form triangle? a)5,4,7 b) 3,4,7, c) 3,4,5 d) 1,8,5
Ans: d)

13.If A, B, C are the mechanisms used separately to reduce the wastage of fuel by 30%, 40%, 10%. What will be the fuel economy if they were used combine?
1.68.4 2.62.2 3.58 4.27
Ans: 62.2
Approach: ( 70/100)*(60/100)*(90/100)*100=37.8
Economy=(100-37.8)=62.2

14.My flight takes of at 2pm from a place at 18N 40E and landed 10 Hrs later at a place with coordinates 36N40W. What is the local time when my plane landed?
1.8.00pm 2.6.00pm 3.12.00am 4.6.40pm
Ans: 6.40 pm

15.The number 384 in decimal system is given by (1432) x in the X System of numbers find the value of X a} 5 b) 6 c) 7 d) 8 e) 9
Ans: a)

17.WHICH SHAPE WILL BE OBTAINED BY USING THESE VALUES OF X ,Y
X Y
0 0.00001
10 1.02
100 1.72
1000 3.00
9999 4.72
Ans: Y= log10(X)

18. Number of faces, vertices and edges of a cube
1.12,6,8 2.6,8,12 3.4 ,6, 8 4.8,12,6
Ans: 6,8 , 12

20.2 student get 3 and 3.5 in their class exam And 1.2 and 1.45 in final exam respectively . What might be the class marks of 3rd student who have got 0 marks in final exam?
1.0.3 2.0.5 3.0.25 4.0.1
ans: 0.25
Approach: take the diff and find out

1. Complete the series.
26, 63, ----, 226..
2. A set of angles for a triangle were given and I was asked to find which one does Not represent a triangle.
3. in a two-dimensional array, X (9, 7), with each element Occupying 2 bytes of memory, with the address of the first Element X (1, 1) is 3000, find the ending address of X (8, 5).
4. In the word ORGANISATIONAL, if the first and second, third And forth, forth and fifth, fifth and sixth words are Interchanged up to the last letter, what would be the tenth? Letter from right?
5. Select the odd one out a. Oracle b. Linux c. Ingress d. DB2
7. The size of a program is N. And the memory occupied by the Program is given by M = square root of 100N. If the size of The program is increased by 1% then how much memory now Occupied?
8. A man, a woman, and a child can do a piece of work in 6 Days. Man only can do it in 24 days. Woman can do it in 16 Days and in how many days child can do the same work?
9. Number of faces, vertices and edges of a cube
10. Find the value of @@+25-++@16, where @ denotes "double" And + denotes "change of sign".
11. Find the result of the following expression if, M denotes Modulus operation, R denotes round-off, T denotes truncation: M (373, 5) +R (3.4) +T (7.7) +R (5.4)
12. A power unit is there by the bank of the river of 750 Meters width. A cable is made from power unit to power a plant Opposite to that of the river and 1500mts away from the power Unit. The cost of the cable below water is Rs. 15/- per meter And cost of cable on the bank is Rs.12/- per meter. Find the Total of laying the cable.
13. Which of the following are orthogonal pairs?
a. 3i+2j b.2i+j c. 2i-3j d. -7i+j

14. If A, B and C are the mechanisms used separately to reduce the wastage of fuel by 30%, 20% and 10%. What will be the fuel? economy if they were used combined.
15. A, B and C are 8 bit no's. They are as follows:
A 1 1 0 1 1 0 1 1
B 0 1 1 1 1 0 1 0
C 0 1 1 0 1 1 0 1
Find (A-B) U C.

16. A Flight takes off at 2 A.M from northeast direction and travels for 11 hours to reach the destination which is in North West direction. Given the latitude and longitude of source and destination. Find the local time of destination when the flight reaches there?
17. Find the singularity matrix from a given set of matrices?
18. (Momentum*Velocity)/ (Acceleration * distance) find units.
19. Which of the following set of numbers has the highest Standard deviation?
7, 0, 7,0,7,0
-7,-7,-7,-7,-7,-7
7, 7, 7, 7, 7, 7
7, 7, 0,-7, 0,-7

20. Match the following.
1. Brother - sister ---> a. Part of
2. Alsatian - dog ---> b. Sibling
3. Sentence - paragraph ---> c. Type of
4. Car - steering ---> d. Not a type of
Ans. 1-b, 2-c, 3-a, 4-d

21. A question from Venn diagram.
22. A pie chart was given and a bar chart was given. 4 questions asked from that. (22-25 questions)
26. G(0)=-1, G(1)=1, G(N)=G(N-1) + G(N-2), G(4)= ?
27. What is the max possible 3 digit prime number?
28. If TAFJHH is coded as RBEKGI then RBDJK can be coded as ......


Fecundity
Dissuade
Felicitious
Orthodox
Genome
Ciliated
Chary
Alacrity
Asperity
Austere
Enconium
Fulminate
Testy
Misanthrope

A series question. Very simple as 16 19 15 ? 14 21 (don’t remember exactly)
1. what is the largest prime no that is stored in 6 bit pattern.
2. WHICH WILL GIVE GOOD STANDARD DEVIATION
1. (7,0,-7,0,7) 2. (7,-7,7,-7,7) 3. (1,0,-1,0,1)
3. WHICH IS NOT A SIDE OF A RECTANGULAR
1. (2m, 3m, 4m ) 2. (3m, 4m, 7m ) 3. (3m, 5m, 9m )
4. WHICH SHAPE WILL BE OBTAINED BY USING THESE VALUES
OF X ,Y
X Y
0 0.00001
10 1.02
100 1.72
1000 3.00
9999 4.72
5. which equation that best suits this curve a line cuts x at -1 when y=0 and x=0 when y=3 and goes upward
6. A man , woman and a boy joindly did a job in 6 days. a man alone finishes in 10 days, a women alone finish in 24 days. then how many days the boy can take to finsh?
7. An aeroplane starts from a (some latitude is given according to place)at 2 am local time to b(some latitude). travellling time is 10 hours. what is the local time of b when it reaches b.
8. A file is transferred from a place to adestination capable of 10 kb. they given some rate of transfer. u have find a equation that best suit this.
9. In a planar cube , the no. of vertices, no of edges and no of faces are 1. 6, 6, 6 2. 4, 8, 12 3. 8, 12, 6 4.........
10. What is the value of m(373, 7) + r(6.8) -t(3.4) + r( 3.4) m- modulas r- roundoff t- truncate
11. what is the value of #%#(5) + %%#(9) where % - square root #- square
12. Match the following a b
1. sentence, paragraph 1. type of
2. basmati, wheat 2. a part of
3. brother, sister 3. not a type of
4. breigal, dog 4. sibling
13. g (0) =1 g (1)= -1 if g (n)=g (n-1) + g(n-2) then what is the value of g (6)?
14. A 0 0 0 0 1 1 1 1
B 0 0 1 1 0 0 1 1
C 0 1 0 1 0 1 0 1
then find the decimal equivalent of ( a u b ) n c.
15. Three schemes in a bank independently gives savings 10%, 20%, 25%. what will be the net saving if they are applied together?
16. which one will be the exact power of 3
(i) 2768 (ii) 2678 (iii) 2187 (iv) …
17. A power unit is there by the bank of the river 750 mts. a cable is made from power unit to power a plant opposite to that of the river at 1500mts. the cost of the cable below water is rs. 15/- per meter ansd cost of cable on the bank is rs. 12/- per meter. then where they will cut
18. odd man out 1.java 2.smalltalk 3.lisp 4.eiffel 5. c++
19. which is the equation for given line among the 5 1. 2x +3y=4 2. x + y= -1 3. y=2x+ 3
20. In which of the system 384 is equal to 1234? 1. base 5 2. base 6 3. base 7 4. base 8 5. base 9
21. The size of a program is n. and the memory occupied by the program is given by m = square root of 100n. if the size of the program is increased by 1% then how much memory now occupied?
22. calculate last address of array element column major a[2,3], array size a[7,9], each element occupies 8 bytes. start address is 3000.
23. (force * velocity)/ (mass * acceleration) =
1. velocity 2.time 3. acceleration 4.momentum
24. In the word “unimpressive” if we change 1st & 2nd, 3rd & 4th, so on then will be 10th letter from right?

TCS - Placement Paper - 23 Sep 06 - Bangalore Critical Reasoning Section

CRITICAL REASONING:
Three Questions were given I don’t remember the exact questions. So I would like to only mention the type of questions, which I had.
1) There were 3 cities namely A, B, C ( California ). Distance to each and the expense for taking each route was given. Costs were given in terms of dollars and cents (Relation b/w dollars and cents should be known.100cents=1$).
Four Questions based on this was asked such as which is the shortest route, less expensive etc.

2) There is a big University and a small college beside. Professors from University were M Senior Prof for Mathematics, J HOD of English Dept, L who knows Urdu and Professors from college were N who knows English well, D HOD of Latin Dept, and Y Senior Prof for Mathematics. There was a function to be conducted together by both the colleges and hence some conditions like
Two Professors from the University has to be chosen.

There cannot be Professors related to the same stream.
Team should consist of three members.
Four Questions based on the above part was given.
3) Six children are selected for the chorus line in the school play: Andrea, Beatrice, Consuelo, Denise, Eve, and Florence . There are six positions in the line; numbered 1 to 6 from left to right. The order of the children in the chorus line is determined by the following rules:
Florence cannot stand in position number 6
Denise must stand immediately to the right of Consuelo
Andrea cannot stand next to Beatrice
Four Questions were based on their arrangements.
4) Some Questions similar to this but not exact
a)If all G’s are L’s, No K’s are M’s…….and questions on above conditions(Refer to Barron’s 15th edition)
b) 2 groups Red and Brown , Marriage is not allowed in the same group…..similar to this…

TCS - Placement Paper - 23 Sep 06 - Bangalore Apptitude Section

APTITUDE SECTION:
1.If g (0)=1,g (1)=1 and g (n)= g (n-1) + g (n –2). Find g (6).
a) 9 b) 13 c) 21 d) 7

2.A plane moves from 9°N60°E to 9°N60°W. If the plane starts at 2 AM and takes 10 hours to reach the destination, find the local arrival time.
a) 4.30 AM b) 6.00 AM c) 4.00 AM d) 10.00AM

3. Select the odd one out. a) Java b) Lisp c) Smalltalk d) Eiffel.
a) Lisp. b) Java. c) Eiffel. d) Smalltalk.

4. Select the odd one out
a) Linux b) Oracle c) DB2 d) Ingress.

5. Number of faces, vertices and edges of a cube
a) 6,8,12 b) 8,12,8 c) 8,6,12 d) 12,8,6

6. If M denotes modulus operation, R denotes round-off, T denotes truncation Find the value of the following expression :( 373,5)+R (3.4)+T (7.7)+R (5.8)
a) 21 b) 16 c) 19 d) 13

7. Which of the following are orthogonal pairs?
a) 5i+3j b) i+j c) 3i-5j d) -7i+j
A) (a)& (c). B) (b)&(d). C) (a)&(d). D) (c)&(d).

8. Given the length of the 3 sides of a triangle. Find the one that is impossible?
a) (5,5,11) b)(6,4,9) c)(4,3,8) d)(5,5,5)

9. Find the singularity matrix from a given set of matrices? (Hint det (A)==0)
a) 2 0 b) 5 -3 c) 4 6 d) 3 4
3 5 - 5 3 3 7 2 0
a) c b) a c) b d) d

10.Match the following
a) Sentence Paragraph 1) Not a type of
b) Basmati Wheat 2) Siblings
c) Brother Sister 3) A type of
d) Cow Mammal 4) A part of
A->4,B->1,C->2,D->3
A->2,B->3,C->1,D->4
A->3,B->4,C->1,D->2
A->2,B->1,C->4,D->3

11. Which of the following set of numbers has the highest Standard deviation?
a) 1,0,1,0,1,0 b) -1, -1, -1, -1, -1, -1 c) 1,1,1,1,1,1 d) 1,1,0, -1,0, -1

12. A building with height D shadows up to G. A neighbour building with what height shadows C feet.
a) C/D*G b) C+D/G c) C-D*G d) (C*D)/G

13. A bus started from the bus stand at 8 AM and after staying 30 minutes at a destination returns back to the bus stand. The Destination is 27 miles from the bus stand. The Speed of the bus is 18mph. In the return journey the bus travels with 50% fast speed.
At what time it is returns to the bus stand.
a) 1 PM b) 12 PM c) 11 AM d) 10.30 AM
14.Complete the series. 5,9,11,15, __, 21,23
a) 18 b) 19 c) 24 d) 17

15. Which shape will be obtained by using these values of x, y?
X Y
0 0.00001
10 1.02
100 1.72
1000 3.00

16. If DPYGP is coded as BRAIN then EMXCT is coded as ____________?
a) CHAIR b) COBER c) COVER d) CEGER

17. A can copy 50 papers in 10 hours while both A & B can copy 70 papers in 10 hours. Then for how many hours required for B to copy 26 papers?
a) 13 hrs b) 18hrs c) 12hrs d) 15hrs.

18. The size of a program is N and the memory occupied by the program is given by M = 4000sqr_root(N). If the size of the program is increased by 1% then how much % increase is there in the memory?
a) 0.22% b) 0.5% c) 0.8% d) 0.35%

19. One year ago Pandit was three times his sister's age. He will be only twice her age next year. How old will Pandit be after five years?
a) 8 b) 12 c) 11 d) 13

20. A car is filled with four and half gallons of fuel for a round trip . If the amount of fuel taken while going is 1/4 more than the amount taken for coming, what is the amount of fuel consumed while coming back?
a) Less than 2 gallons b) 2 gallons c) 2 1/2 gallons d) More than 3 gallons
ANSWERS: 1) b 2) c 3) c 4) a 5) a
6) c 7) a 8) d 9) c 10) a
11) b 12) d 13) c 14) d 15)Y=Log10(X)
16) c 17) a 18) b 19) c 20) b
21).A, B and C are 8 bit no's. They are as follows:
A -> 1 1 0 0 0 1 0 1
B -> 0 0 1 1 0 0 1 1
C -> 0 0 1 1 1 0 1 0 ( - =minus, u=union)
Find ((A - C) u B) =?
1.55 2.64 3.32 4. 53
Ans:55
hint:A-C is A intersection C bar first do negation of C then do A intesersection C

22) The progam size is N.The memory occupied by the program is M=4000sqrt(N). If the program size is increased by 1%. Then what is the percentage increase in memory?
1. 0.1% 2.0.4% 3.0.5% 4.2%
Ans: 0.5%

Approach: Sqrt of 101
23). What is the unit of the following?
(power*time) / (velocity*velocity)
1.mass 2.distance 3.velocity 4.speed
Ans:mass
Approach: power=work/time
hence numerator=(work*time)/time=work
work=Force*distance
Force=mass*acceleration
accelaration=distance/time^2


now numerator is (mass*distance^2) / (time^2)
denominator is (distance^2) / (time^2) since velocity=distance/time
24). What is the power of 2?
a. 2068 b.2048 c.2668 ANS: (B). 2048

25). Select the odd one out a. WAP b. HTTP c. BAAN d. ARP

26).Find the value $%$(9) - %$%(9) Where $ means doubling and % means change of sign........
1.38 2. -2 3. 50 4.-54
Ans:-54
Approach: (2)(-1)(2)(9) -(-1)(2)(-1)(9)

27)ACUTE is coded as ZBTSD then DMFBS stand for. ANS: CLEAR
28)In the following string find the occurrences of F followed by U but that is not followed by R.
U F R U F D D Y W Z U U F F...............
29)For temperature a function is given according to time : ((t**2)/6) + 4t +12 what is the temperature rise or fall between 6.pm to 9 pm
3 Questions based on Data Interpretations were asked. Among which
A Venn diagram Problem(I don’t remember the figures).
A Bar Chart Problem(Very Simple).
References: For Aptitude section it is enough if we are thorough with all types of problems from R.S.Agarwal and refer previous question papers