Capgemini Mock Test-1
Capgemini Mock Test-1
Question 1.
Number:
Language JAVA
Topic TREES
Type MCQ
Question Tree is a binary search tree. Which of the following code
will help us to find the minimum element of Tree?
a) public void min (Tree root)
{
while (root.left () != null)
{
root = root.left ();
}
System.out.println (root.data ());
}
b) public void min (Tree root)
{
while (root != null)
{
root = root.left ();
}
System.out.println (root.data ());
}
c) public void min (Tree root)
{
while (root.right () != null)
{
root = root.right ();
}
System.out.println (root.data ());
}
Option 1 a
Option 2 b
Option 3 c
Option 4 d
KEY a
Explanation All the elements lesser than root is on left side of tree. So,
node will traverse the left, iterating to the leftmost leaf of the
root will give the minimum element in a binary search tree.
Read more about Binary Search Tree here
Binary search tree in Data Structures (Introduction)
Difficulty Medium
Question 2.
Number:
Language JAVA
Topic Time complexity
Type MCQ
Question What is the time complexity of searching for an element in a
circular linked list?
Option 1 O(n)
Option 2 O(nlogn)
Option 3 O(1)
Explanation In circular linked list , it will loop around all the elements.
i,e if there are “n” elememts, all the elements are attended in
worst case.
Difficulty Medium
Question 3.
Number:
Language JAVA
Topic (TREES) data structures
Type MCQ
Question What does the following piece of code do?
public void func (Tree root)
{
func (root.left ());
func (root.right ());
System.out.println (root.data ());
}
Explanation Postorder
Tips to remember –
Difficulty Medium
Question 4.
Number:
Language JAVA
Topic Time Complexity
Type MCQ
Question In the worst case, the number of comparisons needed to
search a singly linked list of length n for a given element is
Option 1 log 2 n
Option 2 n/2
Option 3 Log 2 n 1
Option 4 n
KEY n
Question 5.
Number:
Language JAVA
Topic Arrays
Subtopic Searching
Type MCQ
Question Consider an array A = {1, 2, 4, 5, 6, 11, 12} and a key which
is equal to 10. How many comparisons would be done to
find the key element in the array using the binary search?
Option 1 5
Option 2 1
Option 3 2
Option 4 3
KEY 3
n/2^k=1
log n= k log 2
k=log n base 2.
N=7
K=log 7 base 2 = 3
K=3
So, the answer becomes 3.
Difficulty Medium
Question 6.
Number:
Language C
Topic Arrays
Type MCQ
Question With the given information provided find out the address of
Arr[17] in a 1-D array Arr[30].
- lower bound = 1
Option 1 1132
Option 2 1070
Option 3 1128
Option 4 1068
KEY 1132
Difficulty Medium
Question 7.
Number:
Language C
Topic Arrays
Subtopic Operations
Type MCQ
Question Which of the following operations is possible on an array?
Option 2 Insertion
Option 3 Searching
Option 4 Sorting
Type MCQ
Question What do we call the binary tree nodes with no successor?
Question 9.
Number:
Language C
Topic Arrays
Subtopic Index
Type MCQ
Question What do we call the highest element of an arrays index?
Option 1 Upper bound
Option 3 Range
Option 4 Extraction
Question 10.
Number:
Language JAVA
Topic Trees and Graphs
Subtopic Relations
Type MCQ
Question Which of the following data types represents many to many
relations?
Option 2 Graph
Option 3 Plex
Option 4 Trees
Question 11.
Number:
Language C
Topic Operator
Type MCQ
Question What will be the space required for this piece of code?
int sum (int B[], int n)
{
int s = 0, j;
for (j = 0; j < n; j++)
s = s + B[i];
return s;
}
// sizeof(int) = 2 bytes
Option 1 2n+4
Option 2 2n+8
Option 3 2n+2
Option 4 2n
KEY 2n+8
Explanation Number of elements are “n” int the array and it is mentioned
that int data type acquires 2 bytes, So there will be 2n bytes
acquired.
As int array occupies 4 bytes.
“s” variable will occupy 2 bytes.
“j” variable will occupy 2 bytes.
so total=2n+4+2+2=2n+8 bytes.
Difficulty Medium
Question 12.
Number:
Language C
Topic Control Statements
Subtopic If else
Type MCQ
Question For input e = 7 & f = 8.
work (input e, input f)
If (e < f)
return work (f, e)
elseif (f != 0)
return (e + work (e, f - 1))
else
return 0
Option 1 72
Option 2 88
Option 3 56
Option 4 65
KEY 56
Question 13.
Number:
Language C
Topic Control Statements
Subtopic If else
Type MCQ
Question What will be the output of the following pseudo code?
Input p = 9, w = 6 ,
p=p+1;
w=w-1;
p=p+w
if (p > w)
print p
else
print w
Option 1 6
Option 2 5
Option 3 10
Option 4 15
KEY 15
Question 14.
Number:
Language C
Topic Control Statements
Subtopic Loops
Type MCQ
Question What will be the output of the following pseudo-code?
Input t = 6, h = 9 and set x = 0
Integer c
if (h > t)
for (c = t; c < h; c = c + 1)
x=x+c
End for loop
print x
else
print error message print x
Option 1 21
Option 2 15
Option 3 9
Option 4 6
KEY 21
Explanation In this pseudocode, the for loop operates from c = 6 until c <
9.
Question 15.
Number:
Language C
Topic Control statements
Subtopic Do while
Type MCQ
Question What will be the output of the following pseudo code?
integer i
set i=3
do
print i+3
i=i-1
while( i not equals 0)
end while
Option 1 654
Option 2 656
Option 3 555
Option 4 666
KEY 654
Explanation Step 1:
It will print i+3, here i value is 3. So i+3 is 6. On the next
line, i will be decremented by 1. Then checking
the conditions in do-while() i!=0. Here updated i value is 2
(2!=0),so condition is true. The loop
continues.
Step 2:
It will print i+3, here updated i value is 2. So i+3 is 5. On the
next line i will be decremented by 1. Then
checking the conditions in do-while() i!=0. Here updated i
value is 1 (1!=0),so condition gets true. The
loop continues
Step 3:
It will print i+3, here updated i value is 1. So i+3 is 4. On the
next line i will be decremented by 1. Then
checking the condition in do while() i!=0. Here updated i
value is 0 (0!=0),so condition gets false. Thus
the loop gets terminated!
Difficulty Medium
Question 16.
Number:
Language C
Topic Control Statements
Subtopic If else
Type
Question What will be the output of the following pseudocode for
input a = 30, b = 60, C = 90?
Integer a, b, c, sum
Read a, b, c
Set sum = a + b + c
if ((sum EQUALS 180) and (a NOT EQUALS 0) and (b
NOT EQUALS 0) and (c NOT EQUALS 0))
Print " Success"
Otherwise
Print "Fail"
End if
Option 1 success
Option 2 Fail
KEY success
Difficulty Medium
Question 17.
Number:
Language C
Topic Control Statements
Subtopic If ladder
Type MCQ
Question
What will be the output of the following pseudocode for a =
2, b = 6?
Integer funn(Integer a, Integer b)
if(a > 0)
if(b > 0)
return a + b + funn(a + 1, 0) + funn(a + 2, 0) +
funn(a + 3, 0)
End if
End if
return a + b
End function funn()
Option 1 17
Option 2 21
Option 3 20
Option 4 8
KEY 20
Explanation a=2,b=6
So, 2+6+3+4+5=20
Question 18.
Number:
Language C
Topic Control Statements
Subtopic Loops
Type MCQ
Question
What will be the output of the following pseudocode?
Integer count
print "#"
if (count > 6)
CONTINUE
print count
End for
Option 1 #0#1#1#2#3#4#5#
Option 2 0#1#1#2#3#4#5#6##
Option 3 #0#1#1#2#3#4#5#6##
Option 4 #0#1#1#2#3#4#5#6#7#8#9#10
KEY #0#1#1#2#3#4#5#6##
Question 19.
Number:
Language C
Topic Strings
Type MCQ
Question What would be the output of the following pseudocode?
Integer a
String str1=”goose”
a=stringLength(str1)
print(a^1)
Option 1 0
Option 2 4
Option 3 5
Option 4 3
KEY 4
Explanation There are two variables a and str1. Value initialized for str1
is “goose”. On the next line, we are finding the length of str1
that is 5. Finally, printing the output of a bitwise exclusive
OR operator with 1. And the answer is 4.
Difficulty Medium
Question 20.
Number:
Language C
Topic Operators
Type MCQ
Question What would be the output of the following pseudocode?
Integer a,b,c
Set a=8,b=51,c=2
C=(a^c)^(a)
B=b mod 4
Print a+b+c
Option 1 13
Option 2 17
Option 3 26
Option 4 16
KEY 13
Difficulty Medium
Question 21.
Number:
Language C
Topic Control flow
Type MCQ
Question What would be the output of the following pseudocode?
Integer I,j,k
Set k=8 for(each I from 1 to 1)
for(each j from the value of I to 1)
print k+1
end for
end for
Option 1 2
Option 2 9
Option 3 7
Option 4 8
KEY 9
Difficulty Medium
Question 22.
Number:
Language C
Topic Operators
Type MCQ
Question What will be the output of the following pseudocode?
Integer a,b
Set a=15, b=7
a=a mod (a-3)
b=b mod(b-3)
a=a mod 1
b=b mod 1
Print a+b
Option 1 15
Option 2 7
Option 3 2
Option 4 0
KEY 0
Difficulty Medium
Question 23.
Number:
Language C
Topic Operators and Control statements
Type MCQ
Question What will be the output of the following pseudocode?
Integer a, b, c
Set b = 5, a = 2, c = 2if(b>a && a>c && c>b)
b=a+1
Else
a=b+1
End if
Print a + b + c
Option 1 2
Option 2 13
Option 3 26
Option 4 5
KEY 13
Checking the condition using if, b >a and a>c and c>b here
if conditions get false. Now else part will execute b value
will be incremented by 1 and stored in a, Finally adding all
the updated values of a, b and c (6+5+2 ) and the output of
Pseudocode is 13.
Difficulty Medium
Question 24.
Number:
Language JAVA
Topic Hashing
Subtopic hashing
Type MCQ
Question For which of the following applications can you use
hashing?
2. For Timestamping
Option 3 Only 1
Difficulty high
Question 25.
Number:
Language C
Topic Memory
Subtopic Memory
Type MCQ
Question Consider an array of float. Calculate the difference between
the address of the 1st and 4th element, assuming float
occupies 4 bytes of memory.
Option 1 16
Option 2 4
Option 3 12
Option 4 8
KEY 12
Difficulty medium
ENGLISH (30 QUESTIONS) (30 MINUTES)
Question 1.
Number:
Language ENGLISH
Topic Sentence correction
Subtopic
Type MCQ
Question Which of phrases given below each sentence should replace
the phrase printed in bold type to make the grammatically
correct?
Explanation
Difficulty medium
Question 2.
Number:
Language ENGLISH
Topic Sentence correction
Subtopic
Type MCQ
Question Which of the phrases given below each sentence should
replace the phrase printed in bold type to make the
grammatically correct?
The orator has been left the auditorium before the audience
stood up.
Explanation The work is already done so had will be used instead of has.
Difficulty medium
Question 3.
Number:
Language ENGLISH
Topic Sentence correction
Subtopic
Type MCQ
Question Which of the phrases given below each sentence should
replace the phrase printed in bold type to make the
grammatically correct?
Difficulty medium
Question 4.
Number:
Language ENGLISH
Topic Prepositions
Subtopic
Type MCQ
Question
Fill in the blanks with appropriate preposition to form a
meaningful sentence.
Option 1 to
Option 2 For
Option 3 With
Option 4 On
KEY to
Difficulty medium
Question 5.
Number:
Language ENGLISH
Topic Prepositions
Subtopic
Type MCQ
Question Fill in the blanks with appropriate preposition to form a
meaningful sentence.
Option 1 in
Option 2 on
Option 3 of
Option 4 with
KEY On
Difficulty medium
Question 6.
Number:
Language ENGLISH
Topic Prepositions
Subtopic
Type MCQ
Question Fill in the blanks with appropriate preposition to form a
meaningful sentence.
Option 2 on
Option 3 with
Option 4 to
KEY of
Difficulty medium
Question 7.
Number:
Language ENGLISH
Topic Grammar
Subtopic
Type MCQ
Question Read each sentence to find out whether there is any
grammatical error in it. The error, if any will be in one part
of the sentence.
Option 5 No error
Difficulty medium
Question 8.
Number:
Language ENGLISH
Topic Grammar
Subtopic
Type MCQ
Question Read each sentence to find out whether there is any
grammatical error in it. The error, if any will be in one part
of the sentence.
Difficulty medium
Question 9.
Number:
Language ENGLISH
Topic Grammar
Subtopic
Type MCQ
Question Read each sentence to find out whether there is any
grammatical error in it. The error, if any will be in one part
of the sentence(sentence was devided into options)
Option 5 No error
Difficulty medium
Question 10.
Number:
Language ENGLISH
Topic Reading comprehension
Subtopic
Type MCQ
Question Studies of the Weddell seal in the laboratory have described
the physiological mechanisms that allow the seal to cope
with the extreme oxygen deprivation that occurs during its
longest dives, which can extend 500 meters below the
ocean’s surface and last for over 70 minutes. Recent field
studies, however, suggest that during more typical dives in
the wild, this seal’s physiological behavior is different. In
the laboratory, when the seal dives below the surface of the
water and stops breathing, its heart beats more slowly,
requiring less oxygen, and its arteries become constricted,
ensuring that the seal’s blood remains concentrated near
those organs most crucial to its ability to navigate
underwater. The seal essentially shuts off the flow of blood
to other organs, which either stop functioning until the seal
surfaces or switch to an anaerobic (oxygen-independent)
metabolism. The latter results in the production of large
amounts of lactic acid which can adversely affect the pH of
the seal’s blood, but since the anaerobic metabolism occurs
only in those tissues which have been isolated from the
seal’s blood supply, the lactic acid is released into the seal’s
blood only after the seal surfaces, when the lungs, liver, and
other organs quickly clear the acid from the seal’s
bloodstream.
Difficulty medium
Question 11.
Number:
Language ENGLISH
Topic Reading comprehension
Subtopic
Type MCQ
Question Studies of the Weddell seal in the laboratory have described
the physiological mechanisms that allow the seal to cope
with the extreme oxygen deprivation that occurs during its
longest dives, which can extend 500 meters below the
ocean’s surface and last for over 70 minutes. Recent field
studies, however, suggest that during more typical dives in
the wild, this seal’s physiological behavior is different. In
the laboratory, when the seal dives below the surface of the
water and stops breathing, its heart beats more slowly,
requiring less oxygen, and its arteries become constricted,
ensuring that the seal’s blood remains concentrated near
those organs most crucial to its ability to navigate
underwater. The seal essentially shuts off the flow of blood
to other organs, which either stop functioning until the seal
surfaces or switch to an anaerobic (oxygen-independent)
metabolism. The latter results in the production of large
amounts of lactic acid which can adversely affect the pH of
the seal’s blood, but since the anaerobic metabolism occurs
only in those tissues which have been isolated from the
seal’s blood supply, the lactic acid is released into the seal’s
blood only after the seal surfaces, when the lungs, liver, and
other organs quickly clear the acid from the seal’s
bloodstream.
Option 5 Clears the lactic acid from its blood before attempting to
dive
Difficulty medium
Question 12.
Number:
Language ENGLISH
Topic Reading comprehension
Subtopic
Type MCQ
Question Studies of the Weddell seal in the laboratory have described
the physiological mechanisms that allow the seal to cope
with the extreme oxygen deprivation that occurs during its
longest dives, which can extend 500 meters below the
ocean’s surface and last for over 70 minutes. Recent field
studies, however, suggest that during more typical dives in
the wild, this seal’s physiological behavior is different. In
the laboratory, when the seal dives below the surface of the
water and stops breathing, its heart beats more slowly,
requiring less oxygen, and its arteries become constricted,
ensuring that the seal’s blood remains concentrated near
those organs most crucial to its ability to navigate
underwater. The seal essentially shuts off the flow of blood
to other organs, which either stop functioning until the seal
surfaces or switch to an anaerobic (oxygen-independent)
metabolism. The latter results in the production of large
amounts of lactic acid which can adversely affect the pH of
the seal’s blood, but since the anaerobic metabolism occurs
only in those tissues which have been isolated from the
seal’s blood supply, the lactic acid is released into the seal’s
blood only after the seal surfaces, when the lungs, liver, and
other organs quickly clear the acid from the seal’s
bloodstream.
Recent field studies, however, reveal that on dives in the
wild, the seal usually heads directly for its prey and returns
to the surface in less than twenty minutes. The absence of
high levels of lactic acid in the seal’s blood after such dives
suggests that during them, the seal’s organs do not resort to
the anaerobic metabolism observed in the laboratory, but are
supplied with oxygen from the blood. The seal’s longer
excursions underwater, during which it appears to be either
exploring distant routes or evading a predator, do evoke the
diving response seen in the laboratory. But why do the seal’s
laboratory dives always evoke this response, regardless of
their length or depth? Some biologists speculate that because
in laboratory dives the seal is forcibly submerged, it does not
know how long it will remain underwater and so prepares
for the worst.
Option 1 Only those organs that are essential to the seal’s ability to
navigate underwater revert to an anaerobic mechanism
Option 5 The seal remains submerged for only short periods of time
KEY Organs that revert to an anaerobic metabolism are
temporarily isolated from the seal’s bloodstream
Difficulty medium
Question 13.
Number:
Language ENGLISH
Topic Synonym and Antonym
Subtopic
Type MCQ
Question What is the antonym of Totalitarian?
Option 1 Authoritarian
Option 2 Democratic
Option 3 Dictatorial
Option 4 Autocratic
Option 5
KEY Democratic
Difficulty medium
Question 14.
Number:
Language ENGLISH
Topic Synonym and Antonym
Subtopic
Type MCQ
Question Mark the option which is Closest to the opposite in meaning
of the underlined word or phrase. Farmers should not be
dependent on fickle monsoons.
Option 1 Capricious
Option 2 Stable
Option 3 Unsteady
Option 4 Benign
Option 5
KEY Stable
Difficulty medium
Question 15.
Number:
Language ENGLISH
Topic Synonym and Antonym
Subtopic
Type MCQ
Question Mark the option which is Closest to the meaning of the word
given below. TENACITY
Option 1 Slackness
Option 2 idleness
Option 3 Obduracy
Option 4 indolence
Option 5
KEY Obduracy
Difficulty medium
Question 16.
Number:
Language ENGLISH
Topic Speech and tenses
Subtopic
Type MCQ
Question In the questions below the sentences have been given in
Direct/Indirect speech. From the given alternatives, choose
the one which best expresses the given sentence in
Indirect/Direct speech.
Option 5
Difficulty medium
Question 17.
Number:
Language ENGLISH
Topic Speech and tenses
Subtopic
Type MCQ
Question In the questions below the sentences have been given in
Direct/Indirect speech. From the given alternatives, . choose
the one which best expresses the given sentence in
Indirect/Direct speech.
Option 5
Difficulty medium
Question 18.
Number:
Language ENGLISH
Topic Speech and tenses
Subtopic
Type MCQ
Question In the questions below the sentences have been given in
Direct/Indirect speech. From the given alternatives, choose
the one which best expresses the given sentence in
Indirect/Direct speech.
Option 5
Difficulty medium
Question 19.
Number:
Language ENGLISH
Topic Article
Subtopic
Type MCQ
Question ----- Oranges are grown in Nagpur
Option 1 a
Option 2 an
Option 3 the
Option 4 No article
Option 5
KEY No article
Difficulty medium
Question 20.
Number:
Language ENGLISH
Topic Article
Subtopic
Type MCQ
Question She wants to become ----- engineer
Option 1 an
Option 2 a
Option 3 the
Option 4 No article
Option 5
KEY an
Explanation When the indefinite article comes before a word that starts
with a vowel sound, the normal practice is to use An.
Difficulty medium
Question 21.
Number:
Language ENGLISH
Topic Article
Subtopic
Type MCQ
Question He hopes to join ----- university soon
Option 1 a
Option 2 an
Option 3 the
Option 4 No article
Option 5
KEY a
Difficulty medium
Question 22.
Number:
Language ENGLISH
Topic Sentence selection
Subtopic
Type MCQ
Question In the question a part of the sentence is bold. Alternatives to
the bold part is given which may improve the construction of
the sentence. Select the correct alternative. :
Option 5
KEY No improvement needed
Explanation As word fined is well suitable here with respect to the time
frame of the given sentence as the sentence is in the
past tense therefore the verb also will be in the past tense.
Therefore this sentence does not need any improvement
Difficulty medium
Question 23.
Number:
Language ENGLISH
Topic Sentence selection
Subtopic
Type MCQ
Question In the question a part of the sentence is italicised.
Alternatives to the italicised part is given which may
improve the construction of the sentence. Select the correct
alternative. :
Option 1 to insulting me
Option 2 of insulting me
KEY of insulting me
Explanation As word insult is not well suitable here with respect to the
time frame of the given sentence. Therefore insulting will be
used in place of insult.
Difficulty medium
Question 24.
Number:
Language ENGLISH
Topic Sentence selection
Subtopic
Type MCQ
Question In the question a part of the sentence is italicised.
Alternatives to the italicised part is given which may
improve the construction of the sentence. Select the correct
alternative. :
I would have waited for you at the station if I knew that you
would come.
Option 5
Difficulty medium
Question 25.
Number:
Language ENGLISH
Topic Spotting error
Subtopic
Type MCQ
Question Read each sentence to find out whether there is any
grammatical error in it. The error, if any will be in one part
of the sentence. The letter of that part is the answer. If there
is no error, the answer is 'D'. (Ignore the errors of
punctuation, if any).
Option 4 D. No error
Option 5
Difficulty medium
Question 26.
Number:
Language ENGLISH
Topic Spotting error
Subtopic
Type MCQ
Question Read each sentence to find out whether there is any
grammatical error in it. The error, if any will be in one part
of the sentence. The letter of that part is the answer. If there
is no error, the answer is 'D'. (Ignore the errors of
punctuation, if any).
(solve as per the direction given)
Option 4 D. no error
Option 5
Difficulty medium
Question 27.
Number:
Language ENGLISH
Topic Spotting error
Subtopic
Type MCQ
Question Read each sentence to find out whether there is any
grammatical error in it. The error, if any will be in one part
of the sentence. The letter of that part is the answer. If there
is no error, the answer is 'D'. (Ignore the errors of
punctuation, if any).
Option 4 D. No error
Option 5
Difficulty medium
Question 28.
Number:
Language ENGLISH
Topic Sentence arrangement
Subtopic
Type MCQ
Question Recently
(P) containing memorable letters of Churchill
(Q) a book
(R) has been published
(S) by a reputed publisher
Option 1 QPRS
Option 2 PQRS
Option 3 QRPS
Option 4 RQPS
Option 5
KEY QPRS
Difficulty medium
Question 29.
Number:
Language ENGLISH
Topic Sentence arrangement
Subtopic
Type MCQ
Question All religions are
(P) to advance the cause of peace
(Q) in a holy partnership
(R) justice and freedom
(S) bound together
Option 1 PQRS
Option 2 PRQS
Option 3 SPQR
Option 4 SQPR
Option 5
KEY SQPR
Difficulty medium
Question
Number: 30.
Language ENGLISH
Topic Sentence Arrangement
Subtopic
Type MCQ
Question It was true that
(P) the pet dog
(Q) would never sleep anywhere
(R) we once had
(S) except on the sofa
Option 1 RPQS
Option 2 SPQR
Option 3 PRQS
Option 4 PQSR
Option 5
KEY PRQS
Explanation It was true that the pet dog we once had would never sleep
anywhere except on the sofa.
Difficulty medium
GAME BASED APTITUDE
1. Deductive logical thinking:
Question
Number: 1.
Language
Topic Deductive logical thinking
Subtopic
Type MCQ
Question Rules to Solve
Decoding Rules
Option 1
Option 2
Option 3
Option 4
KEY
Explanation
Difficulty medium
Question
Number: 2.
Language
Topic Inductive logical thinking
Subtopic
Type MCQ
Question
Rules to Solve
2.
3.
4.
Option 1 1 and 4
Option 2 2 and 4
Option 3 2 and 3
Option 4 3 and 4
Option 5 1 and 3
KEY 2 and 3
Explanation Iamges 2 and 3 , first and last row all contain +sign
Difficulty medium
Question
Number: 3.
Language
Topic Grid challenge
Subtopic
Type MCQ
Question Rules to Solve
Problem Statement:
2.
3.
4.
Option 1 1 BLACK UP
2 ORANGE UP
3 ORANGE DOWN
4 BLACK DOWN
Option 5
Difficulty medium
Question 4.
Number:
Language
Topic Motion challenge
Subtopic
Type MCQ
Question Rules to Solve
Problem Statement: You’re a Jim, you love to solve
puzzles, your challenge is to put the red ball into the hole,
but hey, there are obstacles, some are plastic obstacles that
you can move, some are hard rocks, you can’t move them.
Try to do this in minimum number of steps to earn candy.
Option 5
Explanation
Difficulty medium
Behavioral TESTS
Question 1.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I get a lot of invitations from friends
2) I have an open mind towards what other people might
say.
KEY
Explanation There are no correct or incorrect options per se. It may differ
from person to person. The correct answer here is close to a
response a corporate may look for.
Difficulty Medium
Question 2.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I like to decorate my room.
2) I am very polite and respectful to everyone I
meet
KEY
Question 3.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I make a schedule to study for my exams
2) I am uncomfortable interacting with the
opposite sex.
KEY
Question 4.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) When I am part of a group, I like to take the lead.
2) I'd rather let other people do their thing and follow
their lead
KEY
Question 5.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I generally do not misplace things
2) I am very organised
KEY
Question 6.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I like to summarize everything at the end
of the meeting
2) I like to write down points
simultaneously while having a meeting
KEY
Subtopic
Type MCQ
Question 1) I like to live a fast-paced life.
2) I like to have a balanced pace life
KEY
Question 8.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I try not to be involved in more than one thing.
2) I try to do multiple things at a time
KEY
Question 9.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) When talking with someone, I encourage them to
speak.
2) I smile at everyone I see.
KEY
Question 10.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I try to throw waste only in the trash can.
2) I try not to create waste
KEY
Explanation There are no correct or incorrect options person. It may
differ from person to person. The correct answer here is
close to a response a corporate may look for.
Difficulty Medium
Question 11.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I am happy to make speeches in public
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Subtopic
Type MCQ
Question I try not to be involved in more than one thing.
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 13.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I try not to be involved in more than one thing.
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 14.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I can work even when things are disorganised
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 15.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I prefer working within a stable rather than flexible
environment
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Explanation There are no correct or incorrect options person. It may
differ from person to person. The correct answer here is
close to a response a corporate may look for.
Difficulty Medium
Question 16.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question When talking with someone, I encourage them to speak.
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Subtopic
Type MCQ
Question When listening to someone else's problem, I tend to give
advice.
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 18.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I feel like a failure compared to my freinds and co-workers
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 19.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question At appropiate intervals of a conversation, I summarize the
main points of the discussion.
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 20.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question It is very important for me to achieve my goals
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Explanation There are no correct or incorrect options person. It may
differ from person to person. The correct answer here is
close to a response a corporate may look for.
Difficulty Medium
Question 21.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I don't like unexpected responsbilities
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Subtopic
Type MCQ
Question I like to have plenty of time to myself
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 23.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question When I am part of a group, I like to take the lead.
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 24.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I feel uneasy if I'm the centre of attraction
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 25.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I try to throw waste only in the trash can.
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 26.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I would describe myself as an extremely competent person
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 27.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I am able to complete tasks as well as or better than other
people
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 28.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I believe I am more intelligent than more
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 29.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I approach in an easy-going manner
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
Option 5 Strongly Agree
KEY
Question 30.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question My Goals in life are clear
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Subtopic
Type MCQ
Question It's better to get a job done than aim for perfection
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 32.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I prefer archieving my goals than assiting others to achieve
their goals
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 33.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Nothing is wrong or right, everything is relative.
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Question 34.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I like to live a fast-paced life.
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Explanation There are no correct or incorrect options person. It may
differ from person to person. The correct answer here is
close to a response a corporate may look for.
Difficulty Medium
Question 35.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question I feel like dancing when I am very happy.
Option 1 Strongly Disagree
Option 2 Disagree
Option 3 Neutral
Option 4 Agree
KEY
Subtopic
Type MCQ
Question Select the option which you agree the most:
1. Nothing is right or wrong everything is relative
2. I enjoy public speaking.
Option 1 Slightly agree to Statement 1
Option 5
KEY
Question 37.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the option which you agree with the most:
1. I feel like dancing when I am very happy.
2. I am good at dealing with difficult people.
Option 1 Slightly agree to Statement 1
Option 5
KEY
Question 38.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one that you agree with the most:
1. I tend to give advice on someone's problem if needed.
2. I have clear personal goals.
Option 1 Slightly agree to Statement 1
Option 5
KEY
Question 39.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one which you agree with the most:
1. When I am part of a group I like to take the lead.
2. I have never arrived at work late.
Option 1 Slightly agree to Statement 1
Option 5
KEY
Question 40.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one which you agree with the most:
1. I generally do not misplace things.
2. I always tell people exactly what I think.
Option 1 Slightly agree to Statement 1
Option 5
KEY
Explanation There are no correct or incorrect options person. It may
differ from person to person. The correct answer here is
close to a response a corporate may look for.
Difficulty Medium
Question 41.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one which you agree with the most:
1. At an appropriate interval of conversation, I like to
summarise the points
2. I am always happy.
Option 1 Slightly agree to Statement 1
KEY
Subtopic
Type MCQ
Question Select the one which you agree with the most:
1. I like to live a fast-paced life.
2. All of my work has been appreciated and valued by
others.
Option 1 Slightly agree to Statement 1
KEY
Question 43.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one which you agree with the most:
1. I try not to be involved in more than one thing.
2. I have never made a mistake at work.
Option 1 Slightly agree to Statement 1
KEY
Question 44.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the statement that you agree with the most:
1. When talking with someone I encourage them to speak.
2. I have never disappointed anyone.
Option 1 Slightly agree to Statement 1
KEY
Question 45.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one which you agree with the most:
1. I have never felt alone.
2. I never worry if I make a mistake.
Option 1 Slightly agree to Statement 1
KEY
Question 46.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1. People seem to follow my lead during a tough
situation
2. I often stay calm in stressful situations
KEY
Question 47.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1. In a group project, I prefer to deliver a group
presentation.
KEY
Question 48.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I prefer not to concentrate on more than one task at a
time.
2) I am great at multitasking
KEY
Question 49.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I find satisfaction in simple things in life.
2) I am not satisfied with simple things, I want more.
KEY
Question 50.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) If given a task I try to finish it as fast as
possible
2) If given a task I try to finish it as perfectly as
possible. I do not look for time management.
Question 51.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I like to participate in competitions.
2) I tend to ignore competitions and focus on myself
KEY
Subtopic
Type MCQ
Question 1) I imagine a lot of things in my free time.
2) I try to be productive in my free time
KEY
Question 53.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) In a meeting, I tend to talk the most.
2) In a meeting, I tend to listen the most.
KEY
Question 54.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I find it hard to interact with people I don't like
2) I forget personal issues with people I don't like and
keep it professional
Option 1 Slightly agree to Statement 1
KEY
Question 55.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I am sometimes very stressed.
2) I am never stressed
Question 56.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the option with which you agree the most:
1. It is okay to be selfish sometimes.
2. None of my close friends has ever upset me.
Option 1 Slightly agree to Statement 1
KEY
Subtopic
Type MCQ
Question Select the option with which you agree the most:
1. Breakfast is more important than lunch and dinner.
2. I always keep other people’s secrets.
Option 1 Slightly agree to Statement 1
KEY
Question 58.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the option with which you agree the most:
1. Dogs are better companions than cats.
2. I'm a talkative person.
Option 1 Slightly agree to Statement 1
KEY
Question 59.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. Four wheeler is better than two wheeler.
2. I have always had the perfect job.
Option 1 Slightly agree to Statement 1
Option 2 Agree to statement 1
KEY
Question 60.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. Homework is harmful for students.
2. I have a natural talent for influencing people.
Option 1 Slightly agree to Statement 1
KEY
Explanation There are no correct or incorrect options person. It may
differ from person to person. The correct answer here is
close to a response a corporate may look for.
Difficulty Medium
Question 61.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. Committing suicide should not be illegal.
2. I like to plan and organize my work.
Option 1 Slightly agree to Statement 1
KEY
Subtopic
Type MCQ
Question Select the option which you agree with the most:
1. Film piracy is not a crime.
2. I am good at generating ideas.
Option 1 Slightly agree to Statement 1
KEY
Question 63.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. Beating students should be allowed in schools.
2. I never worry if I make a mistake
Option 1 Slightly agree to Statement 1
KEY
Question 64.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. 21 should be the legal driving age around the world.
2. I am a competitive person.
Option 1 Slightly agree to Statement 1
KEY
Question 65.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. Violence is sometimes necessary.
2. Always I can't finish what I start.
Option 1 Slightly agree to Statement 1
KEY
Question 66.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I try to finish my assignment on time
2) I have never failed to submit my assignment on time
KEY
Question 67.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I have never acted on impulse
2) I act on impulse
KEY
Question 68.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I try to be as nice as possible to people
2) I try to be critical to people when needed
KEY
Question 69.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I try not to make mistakes in my life
2) I try to learn from my mistakes
KEY
Question 70.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I like to plan before I start a work
2) I go with the flow of a work
KEY
Explanation There are no correct or incorrect options person. It may
differ from person to person. The correct answer here is
close to a response a corporate may look for.
Difficulty Medium
Question 71.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I like to work for a specific period of time
2) Flexible time of work results in higher efficiency
KEY
Subtopic
Type MCQ
Question 1) Indian culture is crumbling because of western
culture.
2) it is important to integrate the goods of different
culture into your own
KEY
Question 73.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I am very emotional
2) I like to keep my emotions in check
KEY
Question 74.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I often regret my decision
2) I like to decorate my room
Option 1 Slightly agree to Statement 1
KEY
Question 75.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) Online study is better than traditional classroom
studies.
2) It is better to attend traditional classrooms
KEY
Question 76.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. Technology plays important role in sports.
2. Technology don't play an important role in sports.
Option 1 Slightly agree to Statement 1
KEY
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. Life of kids is easier than 50 years ago.
2. I regret my decisions after I make them.
Option 1 Slightly agree to Statement 1
KEY
Question 78.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. Parents are the best teachers.
KEY
Question 79.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. With the help of technology, students nowadays get
more information and learn it more quickly.
KEY
Question 80.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
1. War is the only solution to achieve peace.
2. Peace can be achieved without violence.
KEY
Question 81.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
KEY
Question 82.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
KEY
Question 83.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
KEY
Explanation There are no correct or incorrect options person. It may
differ from person to person. The correct answer here is
close to a response a corporate may look for.
Difficulty Medium
Question 84.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
KEY
Subtopic
Type MCQ
Question Select the one with which you agree the most:
KEY
Question 86.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I have an open mind towards what other people might
say
2) I am uncomfortable interacting with the opposite sex.
KEY
Question 87.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I generally do not misplace things.
2) When I am part of a group, I like to take the lead.
KEY
Question 88.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I try not to be involved in more than one thing.
2) I like to live a fast-paced life.
KEY
Question 89.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I smile at everyone I see.
2) I'd rather let other people do their thing and follow
their lead
KEY
Explanation There are no correct or incorrect options person. It may
differ from person to person. The correct answer here is
close to a response a corporate may look for.
Difficulty Medium
Question 90.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) Nothing is right or wrong everything is relative
2) I am good at dealing with difficult people.
KEY
Subtopic
Type MCQ
Question 1) I tend to give advice on someone's problem if needed.
2) I always tell people exactly what I think
KEY
Question 92.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I am always happy.
2) All of my work has been appreciated and valued by
others.
KEY
Question 93.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I have never made a mistake at work.
2) I never worry if I make a mistake.
KEY
Question 94.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I often stay calm in stressful situations
2) I am great at multitasking
KEY
Explanation There are no correct or incorrect options person. It may
differ from person to person. The correct answer here is
close to a response a corporate may look for.
Difficulty Medium
Question 95.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question 1) I find satisfaction in simple things in life.
2) I tend to ignore competitions and focus on myself
KEY
Subtopic
Type MCQ
Question Select the one with which you agree the most:
KEY
Question 97.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
KEY
Question 98.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
KEY
Question 99.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
KEY
Question 100.
Number:
Language
Topic Behavioral tests
Subtopic
Type MCQ
Question Select the one with which you agree the most:
KEY
Question 1.
Number
Language JAVA
Topic Methods
Subtopic Methods
Type Coding
Question Write a function that accepts a String ‘str’ which has a length of
“len’, the string consistes of alphabets and “#” symbols in it. So the
function should print a string which should have same characters as
previous string but all the “#” symbols should be moved to front
following remaining characters.
Input 1 Move#Hash#to#Front
Output 1 ###MoveHashtoFront
Difficulty Medium
Explanation • Scan string and take a integer variable having string length
• Call the method by giving input as string and its length
• In the method declare two empty strings
• Now iterate original string using for loop, on every iteration
check if the character is ‘#’ , if the character is ‘#’ add it to
empy string1 else add it to empty string2.
• After completion of for loop iteration concate two strings
string1 and string2
• In which string1 consists of all the “#” and string2 consists
of characters other than “#”
• Now print the final String.
Question 2.
Number
Language JAVA
Topic Methods
Subtopic Methods
Type Coding
Question Write a program which accepts the string as a input and the string
consists of alphabet characters in which each character is repeated
for some number of times as “aabbbccd”, now write a program
which prints the final string which consists of alphabet followed by
the number of times it repeated. For example string “aabbbccdd”
prints the output as “a2b3c2d2”
Input 1 aabbbbeeeeffggg
Output 1 a2b4e4f2g3
Difficulty Medium