12-08-23 - Key Answers
12-08-23 - Key Answers
2. Movies are becoming a medium of cultural contacts, good relations and ____among
different countries.
A wars B love C harmony D conformity
3. But each attempt ended in _____ failure, just as such attempts have failed all over the
world.
A gloomy B spectacular C intense D dismal
4. The labor union decided to go on strike because the management wasadamant and did not
agree to their terms. The discussion had reached a/an ____
A climax B obstacle C impetus D impasse
5. But the director who would remake this film, will be made secret for the timebeing.
A is being kept a secret B is being secret
C can be secret D will be kept the secret
7. Many people of world keep procrastinating and then they lose in the end.
A Many people in the world keeps B Many people in world keep
C Many people in the world keep D No improvement needed
8. There is a long and noble history of trying to change the English language's notoriously
illogical system of spelling. The fact that through, rough, dough, plough and hiccough all end
with '-ough', yet none of them sound the same as any of the others, is the sort of thing that
has been vexing poets and learners of English for quite some time. Proponents of "fixing"
this wayward orthography have included some of the most prominent names in the
American history.
Although this issue has been extensively studied and argued over by these and other
eminent thinkers, there has been almost complete lack of success in effecting any
substantial progress. And so it is rather bizarre that the first widespread change in how
people spell English words appears to have come from a group of (largely) young people
sending text messages to one another with cellular phones and other electronic devices. You
may not like seeing the phrase "LOL - U R gr8" on the page, but it is common enough
A Because even though prominent people tried to bring a change, the change actually came
about from unknown and very young people
B Because of the way the spellings have been distorted and simplified intexting with gr8
replacing great
C Because the relatively new electronic medium has been successful in leading to a change
whereas the traditional printed and written forms have failed
D Because there is no consistency in the English language and eventhough a lot of words are
spelt similarly, they all sound different
2. Which of the given options explains the meaning of the word "lexical"?
A Related to improper usage of words B Related to words or vocabulary of a
language
C Related to the efforts to raise understandingD Related to achieving consistency
Quantitative
1. If 22n-1 = (1/8n-3) then the value of n is:
a) 3 b) 2 c) 0 d) -2
2. In a poultry farm , 50 hens give 200 eggs in 2 days, In how many days will 20 hens give 400
eggs?
a) 15 b) 10 c) 5 d) 8
4. Find the largest two digits number that divides 673 and 865 , leaving remainder 1 in each.
a) 91 b) 93 c) 96 d) 98
5. If from a deck of 52 cards , 4 cards are to be selected and one card of its should be a spade
and another card should be a heart , in how many ways can these cards be selected?
a) 132*50C2 b) 52C4 c) 13C4 d) 26*50C2
7. A pie has to be divided amongst few kids. Puneet gets 2/7th portion of the pie and sheela
gets 5/8th portion of the pie. Who amongst the two gets lesser share?
a) Puneet b) Sheela c) Both get equal share d) cannot be determined
8. The principal Rs. A, borrowed at A% per annum simple interest, for A months will amount to:
a)A(1 + A2/12) b) A(1 + A2)/1200) c) (A + A3)/1200 d) A(1 + A2/1200)
25. 4 men can repair a road in 7 hours .How many men are required to repair the road in 2
hours?
a) 7 b) 14 c) 17 d) 10
26. What is the probability of making an even number of 4 digits using 1,2,3 and 4 without any
digit
Being repeated?
27. The population of a town three years ago was ‘b’ and the population of the town three years
From now will be ‘c’ What is the current population of the town, if it grows at the same
rate?
28. The product of two numbers is 2208. If the LCM of the number is 552. What is their HCF?
a) 12 b) 4 c) 24 d) Data inconsistent
29. A rectangles length is four times its breadth, it has an area of 2500 square yards . What is
the
30. Shobhit bought 300 litres of milk at Rs,19 per litre .He added 200 litres of water to it and
sold
400 litres of this milk at Rs,20 per litre .To the reset,he added 10 litres more water and
then
Sold it for Rs, 15 per litre. If he used mineral water that costs Rs. 10 per litre, then the total
31. A Shopkeeper offers ‘Buy 1, Get 1 Free’ offer on a t-shirt marked at Rs. 2,400. If after a
scale
the shopkeeper earns a profit of 33.33%, then what is the actual price of the t-shirt?
a) Rs. 900 b) Rs. 800 c) Rs. 1,200 d) Rs. 1,000 e) Rs, 1,500
32. A vendor purchases binder clips at 12 for Rs. 60. How many clips should he sell for Rs. 60 to
a) 5 b) 8 c) 6 d) 10
Logical Ability
16. The question consists of a problem question followed by two statements I and II.
Find out if the information given in the statement(s) is sufficient in finding the
solution to the problem.
Problem question:
Out of five parties, which party won the election?
Statements:
I)Party ‘X’ got the least number of votes.
II) Party ‘Y’ got hundred more votes than party ‘Z’.
A. Statement I alone is sufficient
B. Statement II alone is sufficient
C. Both statements put together are sufficient
D. Both the statements even put together are not sufficient
E. Either of the statements is sufficient
17. The question consists of a problem question followed by two statements I and II.
Find out if the information given in the statement(s) is sufficient in finding the
solution to the problem.
Problem question:
How is Sangeeta related to Manoj?
Statements:
I) Manoj is the only son of Sangeeta’s father.
II)Rohit is Manoj’s father.
A. Statement I alone is sufficient
Computer Programming
13. For which of the following is the stack implementation useful?
A. Radix search
B. Breadth fist search
C. Recursion
D. None of the above
14. Passage
16. What will the output of the following pseudocode statements be?
(Note: Assume that when two data types are processed through an operator. The answer maintains the same
data type as that of input. Also, all data types have enough range to accommodate any number. If two
different data types are operated upon, the result assumes the data type that is more expressive.)
Integer a = 456, b, c, d = 10
b = a/b
c=a–b
Print c
A. 410
B. 410.4
C. 411.4
D. 411
17. Passage
while (j<=3*i)
{
print j
print blank space
j=j+3
}
print end-of-line //takes the cursor to the next line
i=i+1
}
A. 0
03
B. 0 3
036
C. 0 3
036
0 3 69
D. 0 3 6
036 9
036912
18. What does the following function do?
function operation (int a, int b)
{
if (a>b)
{ retum operation(b, a) }
else
{ retum a: }
}
A. Always returns the first parameter
B. Returns the min of (a,b)
C. Returns the max of (a,b)
D. Loops forever
19. What is the average time required to perform a successful sequential search for an element in an
array A(1: n)?
A. (n+1)/2
B. log2n
C. n(n+1)/2
D.
n2
20. How are protected members of a base class accessed in the derived class when inherited
privately in C++?
A. Privately
B. Publicly
C. Protectedly
D. Not inherited
21. How many nodes does a full binary tree with n” non-leaf nodes contain?
A. log n
B. n + 1
C. 2n + 1
D. 2n
22. A programmer mistakenly writes “gor” instead of the keyword “for” used in loops, while writing
a program in C++. What will this result in?
A. The code would not compile.
B. The code would give an error while execution.
C. The code may work for some inputs and not for the others
D. The code would not create any problem.
23. Which of the following options is an exception to being a part of composite date types?
A. Union
B. Array
C. Structure
D. Stack
24. Which characteristic of data does a binary search use and a linear search does not?
Q is an empty queue. The following operations are done on it:
ADD 5
ADD 7
ADD 46
DELETE
ADD 13
DELETE