CAT Exam

Q53. If the areas of two circles with centers A and B which are tangent to each other are 25 and 100 , then what will be the circumference of the circle with diameter AB?
Option
A 45
B 60
C 15
D 105

Q54. A square is inscribed in a circle of radius ‘a’ units and an equilateral is inscribed in a circle of radius ‘2a’ units. Find the ratio of the length of the side of square to the length of
the side of equilateral triangle.
Option
A 1 : 3
B 2 : 3
C 1 : 3
D 1 : 6

Q55.Calculate the number of ways in which 12 candies be divided between 2 children, 1st child gets 5 candies and 2nd gets 7 candies?
Option
A 27720
B 1584
C 792
D 13,860

Read Solution (Total 0)

CAT Other Question

Read the following passage (an argument) and mark which of the following assumptions is made
in the respective argument.
Q43.
Everybody should carry identity card with them. The card should have the details of blood
group, complete address and telephone number for contact, in case of any emergency.
Option
A Until you know the blood group from the card, the blood cannot be transferred.
B When the accident is fatal, the police needs this information.
C In case of emergency you may need his address on the card to contact his house.
D Nobody should forget their phone number under any circumstances.
Read the following statement and mark which conclusions from the mentioned ones logically

follow the statement.
Q44.Statement: Of all the television sets manufactured in India, the 'solar' brand has the largest
sale.
Conclusions: I.The volume of sales of all the brands of television sets manufactured in
India is known.
II. The production of no other television set in India is as large as that of ‘solar’
Option
A If only conclusion I follows;
B If only conclusion II follows;
C If either I or II follows;
D If neither I nor II follows
Q 57.What does the following Pseudocode trying to do?
Declare an integer variable called n // n is the numberlimit
Declare an integer variable sum // f is the sum
Declare an integer variable f1 // f1 is temporary storage
Declare an integer variable f2 // f2 is temporary storage
set loopcounter to 2 // assigning the variables declared above to
values
set sumto 0
set f1 and f2 to 1
set n to 50
repeat n times
sum = f1 + f2
f2 = f1
f1 = sum
print sum
end loop
Option
A Compute Fibonacci numbers till 51
B Compute Fibonacci number till 50
C Compute Arithmetic Progression from 1 to 50
D Compute Average of numbers from 1 to 51