MPhasis Assessment - 3-2
MPhasis Assessment - 3-2
MPhasis Assessment - 3-2
Information
Logical Ability - 25 Questions, 35 Minutes
b. 480
c. 340
d. 960
Question 2 Problem: What is the amount of Cement exported from China? Statements: 1. China’s
Not answered export to America is 65,000 tones and this is 8% of the total cement exports 2. China’s
total export tonnage of cement is 15% of the total of 1 million tones
Marked out of 1.00
Select one:
a. Statement 1 alone is sufficient in answering the problem
The correct answer is: Either of the statement is sufficient to answer the problem
Question 3 If DELHI is coded as 34178, MUMBAI can be coded as
Not answered
Select one:
Marked out of 1.00
a. 202018
b. 202108
c. 202081
d. 202801
b. DEJK
c. BEHK
d. DGJM
c. HSBOE
d. RGADN
c. ECHELON
d. ECLIPSE
Question 7 Given signs signify something and on that basis, assume the given statement to be
Not answered true. Answer the question basis the information provided “X” denotes larger than “+”
denotes equal to “-“denotes not equal to “/” denotes smaller than “%” denotes not
Marked out of 1.00
smaller than “*” denotes not larger than If A / B and B / C, then
Select one:
a. A-C
b. A%C
c. AXC
d. A+C
Question 8 Sohail is facing south, he turns 135 degrees in the anti-clock wise direction and then 45
Not answered degree in clock wise direction. Which direction is he facing now?
b. North
c. West
d. East
c. PS3
d. MQ2
Select one:
a. Only 1 is true
b. Only 2 is true
c. AEU
d. BEN
Select one:
a. Y
b. None
c. R
b. Y and Z
c. P and R
d. Y and P
b. Z
c. Y
d. P
c. P
d. Z
Select one:
a. 5, 6, 4, 2, 3, 1
b. 5, 6, 2, 3, 4, 1
c. 5, 6, 3, 2, 4, 1
d. 6, 5, 4, 3, 2, 1
Problem Question:
How is Sangeetha related to Manoj
Statements:
1. Manoj is the only son of Sangeetha's father
2. Rohit is Manoj's father
Select one:
a. Neither are sufficient to answer the problem
b. Bothe Statement put together are sufficient to answer the problem
Manoj is the only son of Sangeetha's father -> Manoj is Sangeetha's brother
The correct answer is: Statement 1 alone is sufficient to answer the problem
b. statements 1 and 2 together are not sufficient, and additional data is needed to
answer the question
c. both statements taken together are sufficient to answer the question, but neither
statement alone is sufficient
d. each statement alone is sufficient
If xy is greater than zero, then either both x and y must be negative, or both must be
positive. In statement (1) we have x/y shown as a negative fraction, so either x or y (but
not both) must be negative. Hence xy cannot be positive. Since we have a definite
solution, the answer must be A or D. Looking at (2) alone, we can see that x and y
could both be negative, but it is also possible that one could be negative and the other
positive depending on the absolute values of the numbers.
The correct answer is: statement 1 alone is sufficient, but statement 2 alone is not
sufficient to answer the question
Question 20 Fifty percent of the articles in a certain magazine are written by staff members. Sixty
Not answered percent of the articles are on current affairs. If 75 percent of the articles on current
affairs are written by staff members with more than 5 years experience of journalism,
Marked out of 1.00
how many of the articles on current affairs are written by staff members with more than
5 years experience? Statement 1:20 articles are written by staff members. Statement
2:Of the articles on topics other than current affairs, 50 percent are by staff members
with less than 5 years experience.
Select one:
a. each statement alone is sufficient
b. statements 1 and 2 together are not sufficient, and additional data is needed to
answer the question
e. both statements taken together are sufficient to answer the question, but neither
statement alone is sufficient
There is only one item of information in (1), but we can combine it with the given
information to find that the total number of articles is 40. Further we can see that 24 are
on current affairs, of which 18 are by experienced staff members. So the answer must
be A or D. Ignoring (1), we can see that the information in (2) gives us a fraction and not
a number and no amount of trying will get us one definite number from which we can
find a discrete answer.
The correct answer is: statement 1 alone is sufficient, but statement 2 alone is not
sufficient to answer the question
b. QJMPU
c. QMMPU
d. QJJPU
c. KME : NPH
d. MKI : PRE
b. SPRING : GNIRPS
c. HEAVEN : GOD
d. KNIFE :BLADE
c. CFIL
d. LCIF
Information
Computer Programming – 25 Questions, 35 Minutes
Question 25 The maximum number of nodes on level l of a binary tree is which of the following
Not answered (Root is level 1)
l-1
The correct answer is: 2
Question 26 Following program is to print the sum of all cubes, where the value of the cubes go
Not answered from 0 to 100.
Does the program have and error? If yes, which statement would you modify to correct
the program?
Select one:
a. No Error
b. Statement 1
c. Statement 2
d. Statement 3
Select one:
a. 70
b. 30
c. 40
d. 8
Question 28 What is the term given to the variable whose scope is beyond all the scopes, which can
Not answered be accessed by all the scopes?
c. Universal Variable
d. Auto Variable
e. Global Variable
Question 29 Which one of the following is the lowest level format to which the computer converts a
Not answered higher language program before execution?
b. Machine Code
c. System Language
d. Assembly Language
For a function call sum(30), how many times will the function sum be called to compute
the sum?
Select one:
a. 1
b. 30
c. 15
d. 16
Question 31 There are two loops which are nested. This implies which one of the following?
Not answered
Select one:
Marked out of 1.00
a. Two loops with same iteration count
b. Tow loops, one inside the other
The correct answer is: Tow loops, one inside the other
Question 32
calss rocket
Not answered
{
Marked out of 1.00 private:
integer height, weight
public: // statement 1
function input(int a, int b)
{
height=a;
weight=b;
}
}
function main()
{
rocket rocket1, rocket2
}
Select one:
a. rocket is a class with rocket1, rocket2 , height and weight as its attributes
b. rocket is a class with rocket1 and rocket2 as its attributes, height and weight are
the objects of class rocket
c. rocket is a class with rocket1, rocket2 , height and weight as its objects
d. rocket is a class with rocket1 and rocket 2 as its objects. height and weight are
the attributes of the rocket
The correct answer is: rocket is a class with rocket1 and rocket 2 as its objects. height
and weight are the attributes of the rocket
Question 33 A writes a code in C++ and passes it on to B. B does some indentation in some
Not answered statements of the code. What will this lead to?
c. Faster Execution
d. Better readability
Select one:
a. Queue
b. AVL Tree
c. Stack
d. B-Tree
Question 35
Integer a=40, b=35, c=20, d=10
Not answered
Marked out of 1.00 Comment about the output of the following two statements
print a*b/c-d
print a*b / (c‐d)
Select one:
a. Differ by 160
b. Differ by 80
c. Same
d. Differ by 50
c. Radix Search
d. Breadth fast search
Not answered
function modify(y,z)
Marked out of 1.00 {
Y=y+1;
z=z+1;
return y-z
}
function calculate()
{
integer a=5, b=10, c
c=modify(a,b);
print a
print space
print c
}
Assume that A and B were passed by value. What will be the output on executing
function calculate ()?
Select one:
a. 10 -5
b. 6 -5
c. 11 -5
d. 5 -5
Question 38 In the execution process of a program, this technique involves the intermediate
Not answered representation to be compiled to native machine code at run time. What is the name of
this technique?
Marked out of 1.00
Select one:
a. Static Interpretation
b. Run time interpretation
Find ?? in statement1?
Select one:
a. number3 < temp
b. number3 > number1
Question 40 In an implementation of a linked list, each node contains data and address. Which of
Not answered the following could the address field possibly contain?
c. Member Functions
d. Data Members
Question 42 A sort, which uses the binary tree concept such that any number in the tree is larger
Not answered than all the numbers in the subtree below it. It is called as
c. Insertion Sort
d. Selection Sort
Question 43 A queue is implemented as a single linked list. Each node has an element and pointer
Not answered to another node. Rear and Front contain the addresses of the Rear and Front nodes
respectively. If the condition (rear isequal front) is true and neither is NULL, what do we
Marked out of 1.00
infer about the linked list?
Select one:
a. None
b. There is an error
Which Statement in this code has an error?
Select one:
a. Statement 1
b. Statement 3
c. Statement 2
d. None of the above
The correct answer is: Amount of memory required to run the program
Question 46
function main()
Not answered
{
Marked out of 1.00 integer i=0.7
static float m=0.7
if (m equals i)
print "We are Equal”
else if (m>i)
print "I am Greater”
else
print "I am Lesser”
}
Select one:
a. Error
b. I am Lesser
c. I am Greater
d. We are Equal
b. Before it is declared
c. After it is declared
d. In the function it is declared in
c. The ordering of numbers with respect to magnitude in the lists has different
properties
d. All numbers in one list are more than 100, while the other are less than 100
The correct answer is: The ordering of numbers with respect to magnitude in the lists
has different properties
b. Deletion
c. Selection
d. Exchange
Information
:Quantitative Ability – 25 Questions, 35 Minutes
b. 2
c. 1
d. 3
b. 9
c. 0
d. 4
c. -2
d. 3
b. Log a – log b
c. Log a * log b
d. Log a + log b
b. 1/8
c. 1/2
d. 1/6
-1 -1
Question 55 What is X if 8 * X = (-4) ?
Not answered
Select one:
Marked out of 1.00
a. 2
b. -1
c. 1
d. -2
x/8 = 1/-4
ie., x = -2
The correct answer is: -2
Question 56 What is the least number that should be added to 3736 to obtain a number exactly
Not answered divisible by 21?
c. 3
d. 1
b. 2964
c. 2970
d. 2952
Question 58 The LCM and HCF of two numbers are 2970 and 30 respectively. Prime factors of the
Not answered product of two numbers are
c. 2, 3, 7, 13
d. 2, 3, 5, 11
Select one:
a. 200
b. 10
c. 100
d. 20
c. 14
d. 17
M1H1=M2D2
4*7=2*M2
M2=14
The correct answer is: 14
Question 61 The product of two numbers is 2208. If the LCM of the numbers is 552, what is their
Not answered HCF?
b. 12
d. 4
4*7 = x*2
i.e., x = 14
The correct answer is: 4
Select one:
a. 3630
b. 3724
c. 5670
d. 4914
c. 2/5
d. 2/3
Question 64 A bag contains 4 apples and 8 oranges. What is the probability that both the fruits
Not answered drawn from it are apples?
4C2 / 12C2 = 1/11
Marked out of 1.00
Select one:
a. 1/6
b. 3/11
c. 1/3
d. 1/11
Question 65 Ramya has 246 plants to plant. What maximum number of rows can she plant so that
Not answered each row contains equal number of plants and there is no extra plant left?
b. 3
c. 2
d. 6
Select one:
a. 1/2
b. 3/4
c. 1/4
d. 1
Question 67
)5 / (a2)4
Not answered 3
What is the value of (a
Marked out of 1.00
Select one:
-7
a. a
b. 7a
7
c. a
d. None
Question 68 Arnav bought a machine for Rs. 4,50,000/- and sold it to Ramesh at a profit. Ramesh
Not answered later sold the machine to Dinesh at a loss of 10% for Rs. 4,95,000/-. The profit earned
by Arnav is
Marked out of 1.00
Select one:
a. 22.22%
b. 23%
c. 25%
d. 21%
c. (-1,22)
d. (1,2)
e. (0,1)
Question 70 A is twice as efficient as B and B is thrice as efficient as C, who can finish a job alone in
Not answered 24 days. If A, B and C work on alternate days with A starting first, in how many days
will the job finished?
Marked out of 1.00
Select one:
a. 6 2/3 days
b. 6 ½ days
c. 7 ½ days
d. 7 days
e. 6 Days
A=B/2
B=C/3
C=24
SO A=4 B=8
b. 7 liters
c. 98 liters
d. 2 liters
c. 1161
d. 1061
Question 73 Excluding stoppages, the speed of a bus is 54 kmph and including stoppages, it is 45
Not answered kmph. For how many minutes does the bus stop per hour?
b. 10
c. 9
d. 20
Due to stoppages, it covers 9 km less.
9
Time taken to cover 9 km = x 60 min = 10 min.
54
b. 35.55 km/hr
c. 36 km/hr
d. 71 km/hr
160 160 9
Total time taken = + hrs. = hrs.
64 80 2
2
Average speed = 320 x km/hr = 71.11 km/hr.
9
Information
English – 25 Questions, 25 Minutes
Question 75 ____________ the shirt was washed thrice, still he refused to wear it
Not answered
Select one:
Marked out of 1.00
a. However
b. Though
c. Because
d. Since
e. While
c. Back out
d. Renounce
c. Is, are
d. Are, are
e. Were, are
b. Had
c. Being
d. Was
Select one:
a. And even distinguish the sizes
b. And they were even distinguishing the sizes
Question 80 (A) Rajesh likes to play football (B) and riding cycle besides (C) playing chess. Which
Not answered part has the grammatical error
b. B
c. C
d. No Error
Question 81 (A) These decision provides (B) firm ground for all players in (C) the equality rights
Not answered arena. Which part has the grammatical error
b. B
c. C
d. A
The correct answer is: It sounds like the generator is going to explode
Question 83 The equality and texture of jeans produced in Bangalore would be very good - Find
Not answered the better alternative for bolded part of the sentence
b. No change
b. Forewarn
c. Exemplify
d. Misrepresent
e. Typing
c. Characteristic
d. Natural tendency
b. Pure
c. Interesting
d. Dirty
c. False
d. Arrogant
b. Spontaneous
c. Natural
d. Ingenuous
c. Positive
d. Functional
b. Administer
c. Exert
d. Abandon
Select one:
a. RQSP
b. PQRS
c. QRPS
d. SRPQ
Others feel there needs to be widespread visible contempt and anger in society against
this "genocide" -- "the kind we saw against the Nithari killings," says Dr. Bedi. "Today
nobody can say female foeticide is not their problem." Time we all did our bit to help
save the girl child. Time's running out.
Question 92 What does the word sanitised imply in the first paragraph of the passage?
Not answered
Select one:
Marked out of 1.00
a. Legitimate
b. None of these
d. Unforgivable
Question 94 Which of the two people mentioned in the passage suggest similar solution to the
Not answered problem?
The correct answer is: Demand for sex determination and abortion.
Question 96 What could be the meaning of the word modish, as can be inferred from the context it
Not answered is used in first line of the passage?
c. Stylish
d. Beautiful
d. None of these
The correct answer is: The current number of dollar millionaires in India is low.
Question 98 What is a good estimate of the middle class population in India today as inferred from
Not answered the passage?
c. 300m
d. None
e. 58m
Question 99 According to the author, which of these is not a problem for the luxury good firms in the
Not answered Indian market?
The correct answer is: Restriction on firms to enter Indian markets.over a period of
time.