Sunday, November 12, 2006

SOME OF IBM QUESTION PAPERS FOR MCA GUYS


The test in IBM consisted of two sections:



1. aptitude section consisting of 45 questions of 45 minutes duration and
2. technical section consisting of 45 questions in 45 minutes. I am sending u most of the questions of both sections separately, they are enough to clear the written test as the cut off was only 25 for both aptitude and the tech section.

aptitude
1. There are 12 persons seated in a room. If one half of the people belong to group A, one third belong to group B and one forth belong to both the groups.How many dont belong to any group.
ans. 5
2. 1/5 is what part of 2/3

3. A train passes a point in 20 secs and crosses a bicycle moving in opposite direction with a speed of 8 m/s in 15 secs. What is the length of the train?
ans. 24*20 m = 480 m
4. A freight train starts from a station.After two hours a passenger train travelling with a speed of 60mph.starts from the same station.both the trainsmeet after four hours after the departure of the passenger train.what is the speed of the freight train?
ans. 40 m/h

5.a tank has a capacity of 3750cu.m. there r two taps fixed on it,one filling the tank at 800cu m/min and second tap emptying at a rate of 300 cu m/min.if the two taps r opened sccessively for one minute each,then after how much time the tank gets completely filled?

6.the contract for painting three houses is given to three people.a can paint each house in 6 days,b in 8 days & c in 12 days.a starts the work & continues for 8 days,b continues the work for 6 days then in how many days c can finish the work?

7.one edge of a square is the centre of a circlewith the two sides adjoining the edge of the square becoming the radii of the cirle.if the length of the arc described by the two radii(the two sides of the square)is 2 units.what is the perimeter of the square.
ans. 8 units

8. C ----------------D
|
|
|
|
-----------
A B
AB is perpendicular to BC, bc perpendicular to CD
AB=8 cm
BC=5 cm
CD=4 cm
what is the shortest distance from A to D?
ans. 13 cm

9. If 6 squares of equal size are placed side by side to form a rectangle of perimeter 294cm, find the perimeter of each square.
ans. 84 cm

10.What is the vol. of a parrallelopiped of sides 3,4,7cms.
ans. galat
11.Correct definition of pi is
a. 3.14
b. 3.141257
c.22/7
d.ratio of circumferance and diameter
e. none of the above
ans. d

12.A fooball team played 60 matches out of which 30% were won by them. If they start winning all the next matches after how many matches will the average winning rate be 50%
ans. 84 matches

13.difference of ages of 2 persons is 9 and difference of squares of the ages is 459. What is the age of the older person.
ans. 30 yrs

14. There is a rectangular field of 110x70 cm size. If it is to be fenced such that the fence is placed alternative with a gap of 10cm and the fence should be present at the four corners. taking $2 per cm of fence. Find the cost of fencing.
ans. 400
15. the figure having one line of symmetry
a. square
b. equilateral triangle.
c. isosceles triangle
d. rectangle
16. Which is greater?
a. 0.3
b. (0.3)^.5
c. 2/5
d.
17. If there are persons named 1 to n. If each person handshakes with all other persons whose no. is more than him, then how many handshakes are possible.
ans. satisfy from options...

18. maximum value of 3x^2-4x+7


for travelling from A to C there are three choices
1. through a bridge from A to C of 20 miles length having a toll of 75cents
per person
2. through a tunnel from A to C of 10 miles length having a toll of 25 cents
per person
3. a toll free highway from A to B(eastwards)of 20 miles and then B to C
(north west) 10 miles
19. which will be most economical?
bridge
tunnel
highway
none
20.if he wanna reach earliest what will he choose?

21.if the employer of a firm going from A to C deducts some % of his basic
salary which he will choose(what factor will influence his preference)
bridge with less traffic
tunnel
cost of gasolene
cost of toll on three modes
22.What is the shortest mode of travel from B to C
bridge
tunnel
highway
none
23. what is the number of multiplications u have to undergo to multiply two
2x2 matrices
24.what is the angle subtended by the hands of a clock when it is quater past
one
25.if a particle is moving in a circle with const angular velocity then
a. radial acc. =0 tangential acc. =0
b. <>0 =0
c. =0 <>0
d. <>0 <>0

ans. c (rad acc=0, tan acc= constant)

Technical section

The questions may not be in the same order and language as they are memory
based .
I am writing some questions in fill in the blank format for whom i couldn't
remember the choices but the questions were all objective type.

1. The role of objects in object oriented programming in C++ is equivalent
to:
a) asking the driver to stop the bus.
b) Asking the condutor to stop the bus.
c) Ringing the bell to stop the bus.

i) a ii) b iii) both b and c iv) c.
ans. iv

2. If a diagonal element of a determinant is zero then
i) determinant is zero.
ii) Eigen value of the determinant is zero.
iii) Determinant is singular
iv) None of the above. Ans: iii)


3. The output of the expression is
Printf("%d %d %d %d",sizeof(NULL), sizeof('3'), sizeof("3"), sizeof(3)");
i) 0 1 1 0
ii) 2 1 1 2
iii) 2 2 2 2
iv) 2 1 1 1 Ans:(iii)

4. The file of external commands such as ls,cat.... is present in the
following directory of unix
Ans: /etc

5. The command in unix for printing only the number of lines in a file is:
Ans: wc -l

6. The no. Of bytes required to store a long array a[40][20][10]
containing integers is:

7. The synonyms for machine language are:
i) first generations language
ii) machine - dependent
iii) assembly language
iv) both i and ii.
v) All of the above
Ans i)

8. The output of the program:
Char s[ ] = "hello friend"
Printf("%d",*(s+strlen(s)); Ans: zero
9. ( FC ) in hexadecimal is equivalent to ------------- in octal.
ans. 374
10. Another similar question was to convert a no. From decimal to hexal.

11. The max no. of multiplications for multiplying two 2 by 2 matrix are
i) 4 ii) 8 iii 12 iv) 16
ans. 8
12. The initial environment of cobol program was called-----------------

13. ASCII stands for---------------------------------
ans. american standard code for information interchange
14. The output of the program is
Main()
{a[2][3][2]={ {2,3},
{7,4},
{5,6}
}

{ {2,4},
{5,7}
{8,9}
};

printf("%d" , ***a+1);
ans : 3.

15. How can u specify the permission of a file in unix so that it can be read
and used by everyone but can't be changed by anyone.

Ans: 755
16. vector processing is: ----------------------

17 good programing practice is (there were choices and ans was quick
executable and compact one)

18. efficient programing is-------------------

19. complexity of a program is decided by whic factors----------------

20. What is indirection operator in C?
>
21. What is the error in the program:

Main( )
{ int *p;

*p=3;

return 0;
}

Ans: The statement return 0 is invalid in C.

22. What will be the output of the program

Main( )

Union
{ char a[8];

float b;

int c;
} aa;
printf("%d" , aa);

Ans: 8

23.what does > and >> signify in UNIX?

24.int n;
k=n;
result=1;
while(k>1)
{
result*=k;
k--;
}
What does this program do?
a. calculates the factorial for n<0>0
c. b is right if the foll is added

IBM : Global Sample Paper

1. In 1978, a kg of paper was sold at Rs25/-.
If the paper rate increases at 1.5% more than the inflation rate which is 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 given B and C the same number of marbles each of them already have.
Then, B gave C and A the same number of marbles they already have.
Then C gave A and B the same number of marbles they already have.
At the end A,B,and C have equal number of marbles.

(i) If x,y,z are the marbles initially with A,B,C respectively.
Then the number of marbles B have at the end

(a) 2(x-y-z)
(b) 4(x-y-z)
(c) 2(3y-x-z)
(d) x + y-z

Ans. (c)


(ii) If the total number of marbles are 72, then the number of marbles with A at the starting

(a) 20
(b) 30
(c) 32
(d) 39

Ans. (d)


3. If a car starts from A towards B with some velocity.
Due to some problem in the engine after travelling 30km, the car goes with 4/5 th of its actual velocity
The car reaches B 45 min 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 15 books.
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.

eg: chief : tribe :: governer : state
epaulette : shoulder :: tiara : head
guttural : throat :: gastric : stomach
inept : clever :: languid : active
knife : butcher ::
hammer : carpenter ::
7. In a computer institute 9 languages can be taught.
The module is of 6 months duration and of the six languages only one can be taught each month .
In addition to that BASIC is always taught 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 taught prior to that

BINO, FIFO can never be taught in single module

languages are BASIC, WORD STAR, WORD PERFECT, FORTRAN, COBAL, BINO, FIFO, LOTUS, C

i) If word star is in 3rd month , what could be in 6th month.
ii) If COBAL is in the 2nd month and BINO in 6th month. FORTRAN will be taught 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.

Ans. (d)


9. A square plate of some size is cut at four corners. Equal squares of the same size are cut and is formed as open box.
If this open box carries 128 ml of oil. What is the size of the side of the plate?

(a) 17
(b) 14
(c) 13
(d) None of these

1 comment:

Anonymous said...

thank's i love all this questions.....