You are on page 1of 18

Ques o s W s es

1.
A team of four players are to be selected from among four girls A,B,C,D and four boys P,Q,R,S
Wrong cancel
such that there would be at least two girls in the team and the team selection should meet the
following conditions
i.B cannot go with R
ii.D and P must go together
iii.S cannot be put up with A
iv. R and C must be together

Answer Selected

Correct Answer  B. DAPQ

2.
1600 employees are working in a company in four departments: Accounts, HR, Production and
Wrong cancel
Sales, 20$ of the employees are in Accounts with a male-female ratio of 5:3. 640 are working in
Production where the number of males is twice the number of males of the Accounts
Department. The number of HR employees is half the number of employees in the Accounts
department and 60 of them are females. The number of male employee in the Sales
department is same as that of the Production department. How many female employees are
working in the company?

Answer Selected

Correct Answer D. 500

3.
Select the correct option that fills the blank(s) to make the sentence meaningfully
Wrong cancel
complete.
 
Ravi put ______ the light and slept.

Answer Selected

Correct Answer Out

4.
Arrange the fragments A,B,C,D,E and F in order to form a meaningful sentence.
Wrong cancel
A- you should create
B- in situations that have
C- been stuck
D- transformations
E- the space for

Answer Selected

Correct Answer AEDBC

5.
A can do a piece of work in 10 days, and B can do the same work in 20 days. With the
Wrong cancel
help of C, they finished the work in 4 days. C can do the work in how many days,
working alone?

Answer Selected

Correct Answer 10 days

6.
What will be the output of the below code?
Wrong cancel
import java.util.ArrayList;
p j y ;
importjava.util.Collections;
 import java.util.Iterator;
 class MainClass
 {
 public void sort()
{
ArrayListarrayList= new ArrayList();
 arrayList.add("mango");
 arrayList.add("grapes");
Iterator iterator = arrayList.iterator();
 while(iterator.hasNext())
 { System.out.print(iterator.next() +" ");
 }
Collections.sort(arrayList);
}
 }
 public class Main { public static void main(String[] args)
 {
MainClassmainclass = new MainClass();
mainclass.sort();
}
 }

Answer Selected

Correct Answer mango grapes

7.
Select the correct code for opening a file for writing in binary mode
Wrong cancel
Answer Selected

Correct Answer File*f = fopen(“abc.bin”,”wb”)

8.
The index numbers of five commodities are 121,123,125,126,128 and the weights assigned to these
Wrong cancel
are respectively 5,11,10,8,6. Then what is the weighted average index number?

Answer Selected

Correct Answer 124.6

9.
A City Bus is a Ring Route Bus which runs in circular fashion.That is, Bus once starts at
Wrong cancel
the Source Bus Stop, halts at each Bus Stop in its Route and at the end it reaches the
Source Bus Stop again.

If there are n  number of Stops and if the bus starts at Bus Stop 1, then after nth Bus
Stop, the next stop in the Route will be Bus Stop number 1 always.

If there are n stops, there will be n paths.One path connects two stops. Distances (in
meters) for all paths in Ring Route is given in array Path[] as given below:

Path = [800, 600, 750, 900, 1400, 1200, 1100, 1500]

Fare is determined based on the distance covered from source to destination stop
as  Distance between Input Source and Destination Stops can be measured by
looking at values in array Path[] and fare can be calculated as per following criteria:

If d =1000 metres, then fare=5 INR

(When calculating fare for others, the calculated fare containing any fraction value
should be ceiled. For example, for distance 900n when fare initially calculated is 4.5
which must be ceiled to 5)

Path is circular in function. Value at each index indicates distance till current stop
from the previous one. And each index position can be mapped with values at same
index in BusStops [] array which is a string array holding abbreviation of names for
index in BusStops [] array, which is a string array holding abbreviation of names for
all stops as-

“THANERAILWAYSTN” = ”TH”, “GAONDEVI” = “GA”, “ICEFACTROY” = “IC”,


“HARINIWASCIRCLE” = “HA”, “TEENHATHNAKA” = “TE”, “LUISWADI” = “LU”,
“NITINCOMPANYJUNCTION” = “NI”, “CADBURRYJUNCTION” = “CA”

Given, n=8, where n is number of total BusStops.

BusStops = [ “TH”, ”GA”, ”IC”, ”HA”, ”TE”, ”LU”, ”NI”,”CA” ]

 Write a code with function getFare(String Source, String Destination) which take
Input as source and destination stops(in the format containing first two characters
of the Name of the Bus Stop) and calculate and return travel fare.

1
Answer Selected

Correct Answer 1 #include <bits/stdc++.h>


2 using namespace std;
3 int main() {
4 string s , d;
5 ·cin>>s>>d;
6 ·transform(s.begin(),s.end() , s.begin(),::toupper);
7 ·transform(d.begin(),d.end() , d.begin(),::toupper);
8 ·stringarrs[8] = {"TH" , "GA", "IC" , "HA" , "TE", "LU" ,"NI","CA"
9 ·float arr[8]={800,600,750,900,1400,1200,1100,1500};
10 ·float res=0;
11 ·int st ,ed;
12 ·for(int i=0;i<8;i++)

10.
What will be the output for the below? Enter your answer only as Numeral public
Wrong cancel
Class Main { public static void main(string[]) { int x=1/2; if(x==0.5)
System.out.println(x+1); else System.out.println(x*2); } }

Answer Selected

Correct Answer 0

11.
With what value should the highest quantity in data 65,52,14,26,18,35,32,38 be
Wrong cancel
replaced so that the mean and median become equal?

Answer Selected

Correct Answer 53

12.
There was no way to find out the ____________ reason for the failure of the
Wrong cancel
experiment.

Answer Selected

Correct Answer UNCERTAIN

13.
In the questions given below, a part of the sentence is bold. Below are given alternatives to the
Wrong cancel
BOLD part which may improve the sentence. Choose the correct alternative. In case no
improvement is needed, the option 'No improvement' is the answer.
Once you have explored its famous market, the country’s much popular national park is less
than an hour away.

Answer Selected
Correct Answer The country’s most popular

14.
Based on the following data answer the following questions
Wrong cancel
The percentage distribution of expenditure in an office is as follows:
35% on salary, 25% on raw material , 15% on furniture, 10% on electricity charges, 10% on
printing and 5% on incentives . The total expenditure is 2,75,500 Rs.
How much money is spent on furniture alone ?

Answer Selected

Correct Answer
Rs. 41,325

15.
A sum was lent to X for three years by an organisation who fixed a yearly rate of 10% compound
Wrong cancel
Interest for repayment along with the condition of recovery in equal installments of Rs.31944.
What percentage (correct to two decimal places) above the borrowed amount had X to pay the
organization?

Answer Selected

Correct Answer 20.82

16.
If the HCF of 180 and 432 is expressed as (180m + 432n), where m and n are integers,
Wrong cancel
then what is the difference between m and n?

Answer Selected

Correct Answer B) 7

17.
 A work is assigned to 6 men and 12 women and they could complete it in 3 days. It
Wrong cancel
was also observed that together they can do 7 times as much work a man and a
woman can do.In how many days would 14 women have done the work?

Answer Selected

Correct Answer D) 9

18.
A retailer purchased 25 identical toys for a price Rs P and sold some of them for Rs P. If he
Wrong cancel
calculated his profit as 8%, with selling price as base instead of cost price then how many did
he sell?

Answer Selected

Correct Answer 23

19.
Which data structure is used to convert expression from one form to another form?
Wrong cancel
Answer Selected

Correct Answer Stack

20.
The velocity of water flowing over a waterfall is 12m/sec. After going over the fall the water
Wrong cancel
slows to 6m/sec in 3 seconds. What is the acceleration of water ?

Answer Selected

/
Correct Answer -2 m/s^2

21.
Read the given passage and answer the following questions.
Wrong cancel
Rural India faces serious shortages-power, water, health facilities, roads, etc, these
are known and recognized. However, the role of technology in solving these and
other problems is barely acknowledged and the actual availability of technology in
rural areas is marginal. The backbone of the rural economy is agriculture, which also
provides sustenance to over half the country's population. The 'green revolution' of
the 1970s was, in fact, powered by the scientific work in various agricultural research
institutions. While some fault the green revolution for excessive exploitation of water
and land resources through overuse of fertilizers, it did bring about a wheat surplus
and prosperity in certain pockets of the country. ln rural India today, there is a
dire inadequacy of both science (ie, knowledge) and technology (which derives
from science and manifests itself in physical form), The scope to apply technology to
both farm and non-farm activities in rural areas is huge, as are the potential
benefits. In fact, crop yields are far lower than what they are in demonstration farms,
where science and technology are more fully applied. Technologies that reduce
power consumption of pumps are vital, unfortunately, their use is minimal, since
agricultural power is free or largely subsidized. Similarly, there is
little incentive to optimise through technology or otherwise-water use, especially in
irrigated areas (a third of total arable land), given the water rates, Post-harvest
technologies for processing and adding value could greatly enhance rural
employment and incomes but at
present deployment of technology is marginal. Cold storage and cold chains for
transportation to market is of great importance for many agriculture products-
particularly, fruits and vegetables, but are non-existent. These are clearly
technologies with an immediate return of
investment and benefits for all, the farmer, the end-consumer, the technology
provider. However, regulatory and structural barriers are holding back
investments.Power is a key requirement in rural areas, for agricultural as well as
domestic uses. Technology can provide
reliable power a comparatively low cost in a decentralized manner. However, this
needs to be upgraded and scaled in a big way, with emphasis on renewable and
non-polluting technologies. Reliable and low cost means of transporting goods and
people is an essential need or for rural areas. The bullock-cart and the tractortraailer
are present vehicles of choice. Surely, technology can provide a better cheaper and
more efficient solution? Information related to commodity prices, agricultural
practices, weather, etc, are crucial for the farmer. Technology can provide these
through mobile phones, which is a proven technology however, the challenge to
ensure connectivity remains. Thus, there is a pressing need for technology as
currently economic growth-though skewed and iniquitous-has created an
economically attractive market in rural India.

The author's main objective in writing the passage is to

Answer Selected

Correct Answer advocate broadening the scope of research and use of technology in
agriculture

22.
A sales representative‘s commission is 6% on all sales upto Rs.15000 and 5% on all
Wrong cancel
sales exceeding this. He remits Rs.47350 to his company after deducting his
commission. What were the total sales?

Answer Selected

Correct Answer Rs.50000

23
cancel
23.
If (x+10)% of 240 is 60% more than x% of 180, then 15% of (x+20) is what percent less
Wrong cancel
than 25% of x?

Answer Selected

Correct Answer A) 16

24.
Among 5 objects P,Q,R,S and T
Wrong cancel
i. R is twice as heavy as T
ii. ii.S is one and half times as heavy as Q
iii. iii.Q and R together weigh as much as S and T together
v. iv.P and S together are one and half time as heavy as Q and T together
Which among the five is the heaviest of all?

Answer Selected

Correct Answer S

25.
Suresh can  finish a piece of work by himself in 42 days. Mahesh, who is 1/5 times
Wrong cancel
more efficient  as Suresh, requires X days to  finish  the work by  working all by
himself. Then what is the value of X ?

Answer Selected

Correct Answer 35

26.
The Range and the Standard Deviation of a data are R & S respectively. With the shift of origin of
Wrong cancel
the data change(s) occur in the value(s) of:

Answer Selected

Correct Answer Neither R nor S

27.
What is the name of the method that examines a particular data entity and
Wrong cancel
determines what data elements need to be associated?

Answer Selected

Correct Answer Entity relationship diagram

28.
Two statements are given followed by two conclusions I,II and III. Consider the statements to be
Wrong cancel
true events if they seem to be at variance from commonly known facts and decide which of the
given conclusion(s) logically follow(s) from the given statements
Statements
Some apples are pears
Some plums are pears
Conclusion
Some apples are plums
Some plums are apples

Answer Selected

Correct Answer Neither conclusion I nor II follows

29.
lt is difficult to compare countries because various factors such as size, culture,
Wrong cancel
history, geography, natural endowments, geopolitics and internal polity comes into
play. There are some goals which can be achieved by smaller countries; but
sometimes smaller countries find it difficult to embark upon certain big
technological plans even if they have the funds, because the size of the domestic
market is too small. If we consider the bigger countries, the closest comparison to
India is China, though there are many crucial differences.The Chinese vision is to
prepare the country for entry into the ranks of mid-level developed nations by the
middle of the twenty-first century. Acceleration of the nation's economic growth and
social development by relying on advances in science and technology is pivotal in
this.Documents describing the Chinese vision state that science and technology
constitute premier productive forces and represent a great revolutionary power that

can propel economic and social development. It is interesting to note that the main
lessons the Chinese have drawn from their past performance is their failure to
promote science and technology as strategic tools for empowerment. They also
point to the absence of mechanisms and motivations in their economic activity to
promote dependence on science and technology. Similarly, they hold that their
scientic and technological efforts were not oriented towards economic growth. As a
consequence they conclude, a large number of scientic and technological
achievements were not converted into productive forces as they were too far
removed from China's immediate economic and social needs. The Chinese vision is
therefore aimed at exploiting state-of-art science and technology to enhance the
nation's overall power and strength, to improve the people's living standards, to
focus on resolving problems encountered in large-scale industrial and agricultural
production and to effectively control and alleviate pressures brought on by
population, resources and the environment. By the year 2000, China had aimed at
bringing the main industrial sectors up to the technological levels achieved by the
developed countries in the 1970s or 80s, and by 2020 to the level they would have
attained by the early twenty-first century. The aim is to bridge the overall gap with
the advanced world. There is a special emphasis on research and development of
high technologies that would nd defence applications. Some of these technologies
are critical for improving the features of key conventional weapons. Some
technologies are meant for enhancing future military capabilities. Other efforts are
aimed at maintaining the momentum to develop capabilities for cuttingedge
defence technologies. They call for unremitting efforts in this regard with the aim of
maintaining effective self-defence and nuclear deterrent capabilities and to enable
parity in defence, science and technology with the advanced world.  

Choose the word which is most nearly meaning as the word given in bold as used in
the passage.

conventional

Answer Selected

Correct Answer traditional

30.
We cannot overload ______ operator
Wrong cancel
Answer Selected

Correct Answer ::

31.
Which is the wrong term in the following series ?
Wrong cancel
 
jkl, lin, mho, ofq, per, rds, sbu

Answer Selected

Correct Answer jkl


32.
What will come in place of ‘?’
Wrong cancel

Answer Selected

Correct Answer 13

33.
Choose the correct option.
Wrong cancel
Akhil travels first half of the distance at 50 m/s and second half at 75 m/s. the total
distance travelled is 3 km. find his average speed of travel for the entire journey.

Answer Selected

Correct Answer 60 m/s

34.
In a certain code,M + N means M is the son of N, M X N means M is the brother of N; M÷N
Wrong cancel
means M is the husband of N and M - N means M is the sister of N. If T - P + Q X R ÷ S,then
which of the following is true? 

Answer Selected

Correct Answer D. S is the aunt of T

35.
Select the right option from the given alternatives.
Wrong cancel
WOLLS:XPMMT::PILOT:?

Answer Selected

Correct Answer QJMPU

36.
Choose an appropriate word for the BOLD words.
Wrong cancel
She was not sure if the kind-looking old man had an ulterior motive in offering to help her find a
job in a new city. 

Answer Selected

Correct Answer hidden

37.
Two statements are given based on the statements decide whether the data provided in the
Wrong cancel
Two statements are given based on the statements decide whether the data provided in the
statements is sufficient to answer the question that follows them
 
Choose A - If data in statement I alone is sufficient to answer the question
Choose B - If data in statement II alone is sufficient to answer the question
Choose C - If data of either statement I alone or statement II alone are sufficient to answer the
question
Choose D - If data in both statements I and II together are necessary to answer the question
 
 
Statements:
 

L is taller than S but shorter than X. X is shorter than only N


X and L are shorter than N, S is only taller than M
 
Who is the tallest among L, M, N, S and X ?
 

Answer Selected

Correct Answer D

38.
What will be the output of the below code?
Wrong cancel
public class Main { static int num=30;
static class inner
{
 void msg()
 {
System.out.Println(‘Num: num++);
}
}
 public static void main(string args[])
 {
Main.Innertw=new Main.Inner();
tw.msg()
}
 }

Answer Selected

Correct Answer 30

39.
It all started at the beginning of fifth grade. At first, Sarah wasn’t really sure what was
Wrong cancel
happening. In class, she had to squint to see the blackboard clearly. She had to do
the same thing when she read street signs, or when she watched a movie. As the
fuzziness got worse, she became more and more worried. It was important for her to
see the notes and homework assignments the teacher put on the board.
 
It wasn’t long before Sarah found herself squinting all the time, but she didn’t want
anyone to know that she was having a problem seeing. In class, she asked for a desk
that was closer to the blackboard. One day, her teacher said, “Sarah, are you all
right? I’ve noticed you squinting a lot. Are you having trouble seeing the board?”
Sarah shook her head. “I’m fine, Mrs.Cruz,” she said, but she knew she couldn’t
pretend much longer.
At home, she had to sit closer and closer to the television in order to see the picture.
Her mother noticed her squinting as she watched her favourite shows, and she
began to get suspicious.
 
“Tomorrow I’m calling the eye doctor to set up an appointment for you,” she said
fi l S h t t d b th th ’ i d d
firmly. Sarah protested, but her mother’s mind was made up.
Three days later, Sarah had new glasses and instructions from her doctor to wear
them all the time. Sarah frowned in the car the whole way home. “All of the kids at
school will think I’m a nerd,” she said. Her mother smiled and shook her head. “You
look just as beautiful with those glasses on as you do without them,” she said. But
Sarah didn’t believe her. The next day, Sarah kept the glasses in her pocket as she
walked into the schoolyard. She avoided her friends and stood alone, feeling
miserable. Suddenly, she heard her friend Theresa shout. Sarah ran over to the other
girls. “What’s wrong?” she asked. “My silver ring is gone!” Theresa cried. “My sister
sent it to me from California. It’s very special and I can’t lose it!”
 

Sarah could tell that Theresa was very upset. They all looked for the ring in the grassy
area of the playground.
Sarah realized that she could search better if she could see better. She took the
glasses out of her pocket and put them on. The objects and people around her
came into sharp focus. She caught her breath. Everything looked so different! So
clear! She looked down at the ground and a glimmer of silver caught her eye. It was
the ring. “Here it is,” she shouted. “I’ve found it!” She handed it to Theresa, and
Theresa slipped the ring back on her finger.
“Thanks, Sarah,” she said. “I never thought we’d find it.” She paused. “Hey, I didn’t
know you wore glasses. They look great!” Sarah had forgotten that she was wearing
the new glasses. “Thanks,” she replied shyly. As they walked back toward the school
building, two more girls from her class complimented her glasses. Sarah smiled.
“Maybe wearing glasses won’t be so bad after all,” she thought.
 
Read this sentence from the story. ‘In class, she had to squint to see the
blackboard clearly. What does squint mean? 
 

Answer Selected

Correct Answer to look with eyes partly closed

40.
A statement is followed by three assumptions numbered l,ll and lll consider and decide which of
Wrong cancel
the given assumptions is/are implicit in the statement
 
Statement:
A visit of school children to Zoo to explore their knowledge about Zoo animals.
 
Assumptions:-
l. There is no full of freedom for animals in the Zoo.
ll. Children are likely to learn from their interaction with new environment.

Answer Selected

Correct Answer Only ll is implicit.

41.
Choose an appropriate word for the BOLD words.
Wrong cancel
One could clearly see the invasion of the beach by the migratory birds. 

Answer Selected

Correct Answer encroachment

42.
What is the fourth proportional of 0.006,1.2 & 6/25 ?
Wrong cancel
Answer Selected

Correct Answer 48
43.
In the question, a part of the sentence is italicized. Alternatives of the italicized part are given
Wrong cancel
which may improve the construction of the sentence. Select the correct alternative.
Kids are fascinated by all kinds of animated toys, hence there has been increase in demand
of such products in the market recently.

Answer Selected

Correct Answer Hence there has been an increase in demand of

44.
Two statements are given followed by three conclusions, I II and III. Consider the statements to
Wrong cancel
be true even if they seem to be at variance from commonly known facts and decide which of the
given conclusion(s) logically follow(s) from the given statements.
Statements:
Some clocks are numbers.
All clocks are needles
Conclusion
Some clocks have needles.
All needles are clocks.
Some numbers are needles.

Answer Selected

Correct Answer Only conclusions I & III follows.

45.
Eight persons P,Q,R,S,T,U,V and W are sitting around the circular table facing the center. U is
Wrong cancel
sitting between S and W. P is facing W and T is second to the left of W.S is the third to the right
of Q,Who is second to the right of V.
 
Who is sitting between R and V ?

Answer Selected

Correct Answer P

46.
Two ants of length 1cm and 1.2 cm crawl in opposite directions with average speeds 2 and 3 mm
Wrong cancel
per second respectively. How many seconds will they take to cross each other?

Answer Selected

Correct Answer 4.4

47.
Select the correct option that fills the blank(s) to make the sentence meaningfully
Wrong cancel
complete.
The room attendant asked the guests, " What time will you like your wake _____
call? "

Answer Selected

Correct Answer up

48.
Given below is a question followed by two statements,l and ll each containing some information.
Wrong cancel
Decide which of the statements is /are sufficient to answer the question.
In a row, Vijay is sitting exactly in the middle of Ambar and Sonam. What is Vijay’s position from
the right end of the row ?
g
Statement:-
(i) Vijay is16th from the left and is separated by 4 persons from Amber who is his left and if
Amber interchanges his position with Sonam,he becomes 15th from the right.
(ii)Vijay is 16th from the left and if Sonam changes her position with Amber,she becomes 11th
from the left.

Answer Selected

Correct Answer Statement l alone is sufficient.

49. Wrong cancel


The Sequence of folding a piece of square paper and the manner in which the folded
paper has been cut is shown in the figures marked X,Y,and Z. How would the paper
look when unfolded ?

A-

B-

C-

D-

Answer Selected

Correct Answer B

50.
Six square plots are connected end to end to obtain a rectangular plot area 726 meter
Wrong cancel
square . If we take, π=22/7, by what factor is the perimeter of this plot more than that
of the circumference of a circle of radius 10m?

Answer Selected

Correct Answer B) 2.45

51.
In each of the five pairs of the letter- clusters, the letter in the second term is a rearranged/
Wrong cancel
transformed form of the letter in the first term in a particular pattern. In which two pairs, has the
transformation been done the same way ?
 
[A] MASON- AMNOS
[B] PARTY - APRYT
[C]FAULT - AFTLU
[D] LODGE DOLEG
[D] LODGE- DOLEG
[E] CARGO - ACOGS
 

Answer Selected

Correct Answer
A and C

52.
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
Wrong cancel
 
The guilt seeps deep inside you _______ a way that it depresses you.

Answer Selected

Correct Answer In

53.
How many dots are there opposite to the side having four dots ?
Wrong cancel

Answer Selected

Correct Answer two

54.
A sum of Rs.12500 is invested on 1st January 2016 at 4% simple interest p.a. How much
Wrong cancel
interest in RS. gets accrued on the end of the day on 1st July 2016?

Answer Selected

Correct Answer 250

55.
The present ages of three brothers are in the proportion 12:14:17. The difference between the
Wrong cancel
ages of the elder and the eldest is 6 years. What will be the proportion of their ages after four
years?

Answer Selected

Correct Answer 14:16:19

56.
We want to estimate the cost of painting a property.

Wrong cancel
 Interior wall painting cost is Rs.18 per sq.ft. and exterior wall painting cost is Rs.12 per
sq.ft.

If a user enters zero as the number of walls then skip Surface area values as User
may don’t want to paint that wall.

 Calculate and display the total cost of painting the property


Answer Selected 1

Correct Answer 1 #include<iostream>


2 using namespace std;
3 int main()
4 {
5 ········int ni,ne,i=0;
6 ········float int_p=18,ext_p=12,cost=0,temp;
7 ········scanf("%d %d",&ni,&ne);
8 ········if(ni<0 || ne<0 )
9 ········{
10 · · ········cout<<"INVALID INPUT";
11 ········}
12 ········else if(ni==0 && ne==0)

57.
Which argument is passed to fflush()?
Wrong cancel
Answer Selected

Correct Answer stdin

58.
A, B, C, and D can do a piece of work in 20 days. If A and B can do it together in 50 days, and
Wrong cancel
C alone in 60 days, find the time in which D alone can do it

Answer Selected

Correct Answer 75

59.
Select the word or phrase which best expresses the meaning of the given word.
Wrong cancel
 
REIGN

Answer Selected

Correct Answer Regime

60.
Select the word or phrase which best expresses the meaning of the given word.
Wrong cancel
 
VANISH

Answer Selected

Correct Answer Disappear

61.
What is the real value of (0.000314 + 0.000198)^(1/3)?
Wrong cancel
Answer Selected

Correct Answer 0.08

62.
In the following diagram, the triangle stands for ‘males’, the circle for ‘doctors’, the
Wrong cancel
rectangle for ‘government employed’, the hexagon for ‘corona warriors’. The numbers
in different segments show the number of persons for that segment. How many
government employed doctors are either corona warriors or males or both?

Answer Selected

Correct Answer 73

63.
Raju can do a piece of work in 10 days,Vicky in 12 days,Tinku in 15 days.They all started
Wrong cancel
work together,but raju leaves afte 2 days,vicky leaves 3 days before the work is
completed.In how many days work is completed?

Answer Selected

Correct Answer 7 days.

64.
A statement followed by two assumptions numbered I and II. Consider the statement and decide
Wrong cancel
which of the given assumptions is implicit in the statement. Statement: Even though enough
support is provided for potato production and its storage in cold stores,the state will continue to
import from other countries
Assumptions:
I. In Spite of the support for the potato production and storage will not be able to meet the potatoes
by the people in the store.
II. The state is aware that the demand for potatoes by the consumers would rise substantially in the
near future.
              A.  Only ii is implicit
B.  Both i and ii are implicit
C.  Neither i nor ii is implicit 
                          D. Only i is implicit

Answer Selected

Correct Answer Both i and ii are implicit

65.
Select the right option from the given alternatives.
Wrong cancel
KPQR:LRTV::DGHY:?

Answer Selected

Correct Answer EIKC

66.
Select the right option from the given alternatives.
Wrong cancel
DEF:EDF:GHI:?

Answer Selected

Correct Answer HGI

67.
Improve the sentence by selecting the correct alternative to the italicised part of the sentence.
Wrong cancel
Prime Minister Manmohan Sing received a warm welcome from the political leaders as he reached
Pakistan.
Answer Selected

Correct Answer Friendly

68.
Identify which part of the sentence has error and mark it as answer.
Wrong cancel
1. The bridal gown was most
2. unique: the
3. bridegroom designed it
4. and his mother provided the lace fabric

Answer Selected

Correct Answer 1

69.
ACCENTUATE (Meaning)
Wrong cancel
Answer Selected

Correct Answer Increase

70.
Identify which part has error in it.
Wrong cancel
a) I found this key while digging in the backyard, I don't know who it belonged to
 b) I found this key while digging in the backyard, I don't know to who it belonged to.
c) I found this key while digging in the backyard, I don't know who it belongs to.
d) I found this key while digging in the backyard, I don't know to whom does it
belong.

Answer Selected

Correct Answer d

71.
The age of the mother is twice of her son. If the sum of their ages is 60, what is the age of the
Wrong cancel
mother?
 

Answer Selected

Correct Answer 45 years

72.
Which of the following functions is used to accept strings with white spaces?
Wrong cancel
Answer Selected

Correct Answer gets();

73.
Select the correct option that fills the blank(s) to make the sentence meaningfully
Wrong cancel
complete.
There was no ______ that we were in a fix, as we had no food in the coach.

Answer Selected

Correct Answer denial

74.
 The List Price of an item was kept 40% above what the shopkeeper had paid to the
Wrong cancel
manufacturer. On selling the item a profit of 8.64% was earned after allowing two
successive discounts, the first one of which was 20%. What was the percentage of the
second discount?

Answer Selected

Correct Answer D. 3

75.
The mean and standard deviation of the data which is comprised of a set of ten
Wrong cancel
positive numbers are 8 and 2 respectively. If the sum of squares of nine among ten

numbers is 599.What is the tenth number?

Answer Selected

Correct Answer 9

76.
Each of the five students, P,Q,R,S and T studies two subjects from the given subjects named
Wrong cancel
History,Mathematics,English,Sanskrit,andScience.Each subject is studied by two students
i.P studies Mathematics and Sanskrit
ii.R studies History and Mathematics
iii.S and T both study English
iv.Q does not study science Who from the given option studies science?

Answer Selected

Correct Answer D. S

77.
The light from a laser beam travels at a speed of 300000000 m/s how far it is seen after 20
Wrong cancel
nano seconds:

Answer Selected

Correct Answer 6m

78.
What is the name of the method that examines a particular data entity and
Wrong cancel
determines what data elements need to be associated with it?

Answer Selected

Correct Answer Entity Relationship Diagram

79.
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
Wrong cancel
 
Raashi had to travel by boat daily as her college was ______ the river.

Answer Selected

Correct Answer Across

80.
Given below is a question followed by two statements, I and II, each containing some
Wrong cancel
information. Decide which of the statement(s) is/are sufficient to answer the question. How is
Sheela exactly related to Ramesh? Statements
1.Mary’s brother Vikash is married to Sheela and Ramesh’s mother is the sister of Mary.
2.Sheela is the sister of Vikash and Vikash’s only child is the cousin brother of Ramesh.
Answer Selected

Correct Answer D. Statement I alone if sufficient

81.
A city water supply tank has two inlet pipes X and Y, which can fill it in 20 and 30 hours
Wrong cancel
respectively, and an outlet pipe Z which can empty a full tank in 40 hours. If the tank is empty
and the taps are opened in succession for one hour each, and the process continues, in how
many hours will the tank get filled?

Answer Selected

Correct Answer 49 ½

82.
Select the word or phrase which best expresses the meaning of the given word.
Wrong cancel
 
OUTLIVE

Answer Selected

Correct Answer Survive

83.
A statement is followed by three assumptions numbered I, II and III. Consider the statement and
Wrong cancel
decide which of the given assumption(s) is/are implicit in the statement. Statement: Punishment
of students in any form by teachers is banned in all schools to preserve the selfconfidences of
students.
 Assumptions: I. Punishment in a mild form is not a cognizable offence in out-of-school as it is a
method for disciplining children.
 II. Teachers taking recourse to punishing children will be held accountable for their actions.
 III. Punishment might induce fear, negatively affecting students’ level of confidence and
learning

Answer Selected

Correct Answer  A. Only III is implicit

You might also like