Aditi Questions
Aditi Questions
Aditi Questions
1.
5/9 of the part of the population in a villagae are males.if 30 % of the males
are married.the percentage of unmarried females in the total population is..
Let total population = p
no. of males =5p/9
no. of females =(p-5p/9)=4p/9
married males = 30% of 5p/9=30*5p/100*9 =p/6
married females = p/6
unmarried females =(4p/9-p/6)=5p/18
%age of unmarried females in the total population = {(5p/18)/p}*100= 250/9% (ans)
2.
3.
4.
5.
6.
7.
8.
The coefficient
of variation of a series is 11% and its standard deviation is 2.2.
Find the arithmetic mean of the series
9.
17. A boat moves down stream at the rate of 1 km in 6 minutes and upstream
at the rate of 1 km in 10 minutes. The speed of current is
18. In boring a well 50 m deep, the cost is
Rs.4/ for the first meter. The cost of each successive meter
increases by Rs.2/. What is the cost of boring the entire well?
19. Less than ogive and greater than ogive curves meet at
20. The largest value of a data is 105. If
the range of the data is 72, find the smallest value of the data
21. The Standard Deviation of five numbers is 4. If each and
every number is added with 5 then the new standard deviation
22. Find the radius of the cylinder if the surface area is
352 cm2 and its height is 16cm. Find the volume
23. Ramesh has solved 108 questions in an examination. If he
got only 0 marks, then how many questions were wrong
when one mark is given for each one correct answer and 1/3
mark is subtracted on each wrong answer.
24. 1^2 2^2 + 3^2 4^2 + 5^2 6^2 + 7^2 8^2 + 9^2 10^2=?
^-square
25. Aruna cuts a cake into two halves and cuts one half into
smaller pieces of equal size. Each of the small pieces is
twenty grams in weight. If she has seven pieces of the cake in
all with her, how heavy was the original cake?
26. If angles of a pentagon are in the ratio 1 : 3 : 6 : 7 : 10, then smallest
angle is
27. When 2256 is divided by 17 the remainder would be [TCS-2012] A.1 B.16
C.14 D.none of these
28. At 15:15 pm railway time, what will be the angle between minute and hour
hand?
[TCS-2012]
a) 0 degree b) 180 degrees c) 360 degrees d) both a and c
29. How many 6-digit even numbers can be formed from the digits 1, 2, 3, 4, 5,
6 and 7 so that the digits should not repeat and the second last digit is
even?
A. 320 [TICT, DCRU]
B. 720
C. 6480
D. 2160
30. 1! + 2! + .... 50! = ?
a. 3.1035*10^64
b. 2.1021* 10 ^ 65
c. 3.1035*10^63
d. 3.1035*10^62
31. function main()
{
static integer abc=5
print abcif(abc)
main()//calling main function
}
a)43210
b)54321
c)this code under infinite loop
d)this code generates error
32. Questions are based on the following: In a magical temple there are 3
doorways each leading to the interior of the temple. Every door way has an
idol just inside. The magical powers of the temple doubles the flowers a
devotee carries every time he/she passes under a doorway. Each devotee
has to pass on straight through the doorway and cannot retrace his steps till
he comes to the innermost idol.
Q1. Ram carries X flowers at each idol he places an identical number of
flowers Y. He returns from the temple
without a single flower. X was most probably
(a) 2
(b) 5
(c) 6
(d) 7
Q2. In the situation above Y was most probably
(a) 8
(b) 5
(c) 6
(d) 7
Q3. If Sita took 8 flowers to the temple and offered 4 flowers each to the
first two idols then by the time she faces the third idol she has
(a) 40 flowers
(b) 36 flowers
(c) 52 flowers
(d) 56 flowers
33. Directions for question Q1-Q3 : Answer the questions based on the passage
above them
Q. Liz, Jenni, Jolie and Rick have an English final on Friday and they all
would like to study together at least once
before the test. Liz can study only on Monday, Tuesday and Wednesday
nights and Thursday afternoon and night.
Jenni can study only on Monday, Wednesday and Thursday nights and
Tuesday afternoon and night.
Jolie can study only on Wednesday and Thursday nights, Tuesday afternoon
and Monday afternoon and night.
Rick can study the afternoons and nights of Tuesday, Wednesday and
(b) The average age of first year teachers is same as it was in 1975.
(c) Starting teachers are no longer underpaid.
(d) The extent of a persons formal education is a measure by which to
determine his level of salary.
(e) Over the last few years, the average starting salaries of other
professionals have increased by 20%
Option
(a)ebd
(b)bad
(c)abc
(d)aec
41. In the following program
#include
main()
{
char *pDestn,*pSource="I Love You Daddy";
pDestn=malloc(strlen(pSource));
strcpy(pDestn,pSource);
printf("%s",pDestn);
free(pDestn);
}
Option
(a)Free() fails
(b)Strcpy() fails
(c)prints I love You Daddy
(d)error
42. Give the output for the following program segment.
#ifdef TRUE
int I=0;
#endif
main()
{
int j=0;
printf("%d %dn",i,j);
}
43. Give the output for the following program.
#define STYLE1 char
main()
{
typedef char STYLE2;
STYLE1 x;
STYLE2 y;
clrscr();
x=255;
y=255;
printf("%d %dn",x,y);
}
44. What is the output for the program given below
typedef enum grade{GOOD,BAD,WORST,}BAD;
main()
{
BAD g1;
g1=1;
printf("%d",g1);
}
45. In the following program segment
#include
main()
{
int a=2;
int b=9;
int c=1;
while(b)
{
if(odd(b))
c=c*a;
a=a*a;
b=b/2;
}
printf("%dn",c);
}
How many times is c=c*a calculated?
46. What is the output of the following program
#include
main()
{
int i=0;
fork();
printf("%d",i++);
fork();
printf("%d",i++);
fork();
wait();
}
3I-INFOTECH QUESYIONS
which of the following options is equal to the complexity given as o(nlogn)?
a.n o(logn)
b.o(n!)
c.o(logn!)
n
d.o(n )
If the operation,^ is defined by the equation x ^ y = 2x + y,what is the
value of a in 2 ^ a = a ^ 3
A.0 B.1 C.-1 D.4
Ans : a^3=2a+3 and 2^a=4+a
it is given that 2^a=a^3
so 4+a=2a+3
a=1 is the answer
A man buys 12 lts of liquid which contains 20% of the liquid and the rest is
water. He then mixes it with 10 lts of another mixture with 30% of liquid.
What is the % of water in the new mixture?
Ans: 20% in 12 lts is 2.4. So water = 12-2.4 = 9.6 lts. 30% of 10 lts = 3. So water in 2nd
mixture = 10-3 = 7 lts. Now total quantity = 12 + 10 = 22 lts. Total water in it will be 9.6 +
7 = 16.6 lts. % of water = (100*16.6)/22 = 75.45
Two trains are running in opposite directions with the same speed. If the
length of each train is 120 metres and they cross each other in 12 seconds,
then the speed of each train (in km/hr) is:
Option
A. 10
B. 18
C. 36
D. 72
Ans : total distance/total speed=time to cross
240/(speed of t1+speed of t2)=12
240/12=speed of t1+t2=20m/s
so,each 10*18/5=36km/hr
2 hours after a freight train leaves Delhi a passenger train leaves the same
station travelling in the same direction at an average speed of 16 km/hr.
After travelling 4 hrs the passenger train overtakes the freight train. The
average speed of the freight train was?
A. 30 B. 40 C.58 D. 60
If p/q = 5/4 , then 2p+q=?
Ans: p/q=5/4 then 2p+q=2*5+4=14
An article sold at a profit of 20% if both the cost price and selling price
would be Rs.20/- the profit would be 10% more. What is the cost price of
that article?
If 13 = 13w/(1-w) ,then (2w)2 =
A.1/4 B.1/2 C.1 D.2
Ans: 13=13w/1-w
=>13(1-w)=13w
=>1-w=w
=>2w=1
so,(2w)2=(1)2=2
option D is the answer
ravi decides to walk from goregaon to andheri .he has reached his
destination in 2 hr 15 min by covering 3/4 of the distance at 6 kmph and
the rest at 8 mph . how far goregaon from andheri?
speed = distance/ time
3/4th distance in 6kmph, 1/4th distance in 8kmph
so t1 = 3x/24 hr and t2 = x/32 hr
In a group of 15,7 have studied Latin, 8 have studied Greek, and 3 have
not studied either.How many of these studied both Latin and Greek
A.0 B.3 C.4 D.5
N(A* n B*)=nU - nA- nB+ n(AnB) wher A* is compliment..ie P(A)*=1-p(A)
3= 15- 8- 7+ X
thus X=3
If in coded language
1=2
2 = 10
3 = 30
4 = 68
then
5=?
1^3
2^3
3^3
4^3
5^3
+
+
+
+
+
1= 2
2= 10
3 = 30
4 = 68
5 = 130
Ans : 130
How many mashes are there in 1 squrare meter of wire gauge if each mesh
is 8mm long and 5mm wide ?
(a) 2500 (b) 25000 (c) 250 (d) 250000
1 sq meter = 1000000 sq mm
each mesh = 8*5 = 40 sq mm. Clearly 1000000/40 = 25000.
ans is b
A simple interest amount of rs 5000 for six month is rs 200. what is the
anual rate of interest?
a) 10% b) 6% c) 8% d) 9%
S.I=P*N*R/100
200=5000*0.5*R/100
R=200*100/(5000*0.5)
R=8%
Ans is option (c)
An article sold at a profit of 20% if both the cost price and selling price
would be Rs.20/- the profit would be 10% more. What is the cost price of
that article?
SP=120% of CP---(1)
(SP-20)=130% of (CP-20)-----(2)
substitute eqn (1) in (2)
we get,
CP=60
ANS=Rs. 60
A person wants to buy 3 paise and 5 paise stamps costing exactly one
rupee. If he buys which of the following number of stamps he won't able to
buy 3 paise stamps.
let 'x' be no. of 3p stamps & 'y' be no. of 5p stamps
therefr 3x+5y=100
he wont be able to buy 3p stamps iff he buys maximum quant of 5p stamps
i.e. y should be max and x min
thus lets take x=0
3(0)+5(y)=100
5y=100
y=20
thus , if he buys 20 5p stamps, he wont be able to buy 3p stamps... SIMPLE!!!
Pipe A can fill in 20 minutes and Pipe B in 30 mins and Pipe C can empty
the same in 40 mins.If all of them work together, find the time taken to fill
the tank
(a) 17 1/7 mins (b) 20 mins (c) 8 mins (d) none of these
ans is 17 1/7
(1/20+1/30-1/40)=7/120
so, the time is 120/7 or 17 1/7
In june a baseball team that played 60 games had won 30% of its game
played. After a phenomenal winning streak this team raised its average to
50% .How many games must the team have won in a row to attain this
average?
A. 12 B. 20 C. 24 D. 30
the team wins 18 of 60 games
in order to get 50% average it must win 24 games in a row
Two trains move in the same direction at speeds 50 kmph and 32 kmph
respectively. A man in the slower train observes that 15 seconds elapse
before the faster train completely passes by him. What is the length of
faster train?
(a) 100m (b) 75m (c) 120m (d) 50m
As both trains move in same direction, the relative velocity is (50-32)Km/hr
=> Velocity = 18Km/hr = 18*(5/18) m/s = 5m/s
As 15seconds is the total time taken by the train,
=> Length of train = 5*15 = 75m
How many 1's are there in the binary form of 8*1024 + 3*64 + 3
8*1024 = 1000*10000000000 (the product will have one 1 only)
3*64 = 11*1000000 (the product will contain two 1)
3 = 11
when added , we get five 1.
it is clearly seen that "A" is 5 more and "D" is 5 less than the required cost per kg .
therefore 50/50 will go well .
A=50kg and D=50kg. (D= B&C in equal ratio). therefore B&C=25kg each .
(A:B:C)=(50,25,25)
in town of 500 people,285 read hindu and 212 read indian express and 127
read times of india 20 read hindu and times of india and 29 read hindu and
indian express and 35 read times of india and indian express . 50 read no
news paper . then how many read only one paper?
HIndu = 285
TOI = 127
IE = 212
now
Hindu and TOI both is = 20
TOI and IE both is = 35
Hindu and IE both is = 29
now suppose Hindu , TOI nd IE all is = x ;
so,only Hindu is = 285-20-29-x = 236-x ;
only TOI is = 127-20-35-x = 72-x ;
only IE is = 212-35-29-x = 148-x ;
now, 236-x + 72-x + 148-x + 20 + 29 + 35 + x + 50 = 500 590 -2x = 500
so, x = 45 this is the value who read all the 3 dailies.
so,result is = 236-45 + 72-45 + 148-45 = 191 + 27 + 103 = 321.
A software engineer has the capability of thinking 100 lines of code in five
minutes and can type 100 lines of code in 10 minutes. He takes a break for
five minutes after every ten minutes. How many lines of codes will he
complete typing after an hour?
5-think
5-type
5-break
5-type
5-think
5-break
5-type
5-type
5-break
5-think
5-type
5-break
so 5 times for 5 minutes SE types.
There are two circles, one circle is inscribed and another circle is
circumscribed over a square. What is the ratio of area of inner to outer
circle?
For simplicity consider side of the square as 1. Now radius of inner circle =1/2. Formula for
diagonal of the square = side*sqrt(2) = 1*sqrt(2). Half the diagonal = (1/2)*sqrt(2) =
1/sqrt(2). We got radiuses of both circles. So calculate areas and find ratio. Inner circle
area= pi*(1/2)^2 and Outer circle = pi*(1/sqrt(2))^2. Divide both, you will get ratio as 1:2
In objective test a correct ans score 4 marks and on a wrong ans 2 marks
are ---. a student score 480 marks from 150 question. how many ans were
correct?
a) 120 b) 130 c) 110 d) 150
let x be the correct answer and y be the wrong answer
so the total number of questions is (x+y)=150
=>4x-2y=480
=>6x=780
hence x=130
option b is the answer
There are two candles of equal lengths and of different thickness. The
thicker one lasts of six hours. The thinner 2 hours less than the thicker one.
Ramesh lights the two candles at the same time. When he went to bed he
saw the thicker one is twice the length of the thinner one. How long ago did
Ramesh light the two candles .
Both are Equal length: L
Thick's burning rate: L/6
Thin's burning rate: L/4
After X hours (at bed time) of burning, remaining lengths:
Thick: L-(LX/6) and Thin: L-(LX/4)
But, at X hours, thick is twice as long as thin. i.e.:
L-(LX/6)=2[L-(LX/4)]
1-(X/6)=2-(X/2)
Solve for X and get 3.
2/(x^4)=e^-6
2/(x^4)=2.4788*10^-3
x^4=806.85
x=5.3296
A train 240 m long passes a pole in 24 seconds. How long will it take to
pass a platform 650 m long?
A. 65 sec B. 89 sec
C. 100 sec D. 150 sec
speed=240/24=10m/sec
total distance=240+650=890m.
time=890/10=89sec.
TCS QUESTIONS
If log 0.317=0.3332 and log 0.318=0.3364 then find log 0.319 ?
Sol) log 0.317=0.3332 and log 0.318=0.3364, then
log 0.319=log0.318+(log0.318-log0.317) = 0.3396
A box of 150 packets consists of 1kg packets and 2kg packets. Total weight of box is
264kg. How many 2kg packets are there ?
Sol) x= 2 kg Packs
y= 1 kg packs
x + y = 150 .......... Eqn 1
2x + y = 264 .......... Eqn 2
Solve the Simultaneous equation; x = 114
so, y = 36
ANS : Number of 2 kg Packs = 114.
My flight takes of at 2am from a place at 18N 10E and landed 10 Hrs later at a place with
coordinates 36N70W. What is the local time when my plane landed?
6:00 am b) 6:40am c) 7:40 d) 7:00 e) 8:00
Sol) The destination place is 80 degree west to the starting place. Hence the time
difference between these two places is 5 hour 20 min. (=24hr*80/360).
When the flight landed, the time at the starting place is 12 noon (2 AM + 10 hours).
Hence, the time at the destination place is 12 noon - 5:20 hours = 6: 40 AM
A plane moves from 9N40E to 9N40W. If the plane starts at 10 am and takes 8 hours
to reach the destination, find the local arrival time ?
Sol) Since it is moving from east to west longitide we need to add both
ie,40+40=80
multiply the ans by 4
=>80*4=320min
convert this min to hours ie, 5hrs 33min
It takes 8hrs totally . So 8-5hr 30 min=2hr 30min
So the ans is 10am+2hr 30 min
=>ans is 12:30 it will reach
The size of the bucket is N kb. The bucket fills at the rate of 0.1 kb per millisecond. A
programmer sends a program to receiver. There it waits for 10 milliseconds. And response
will be back to programmer in 20 milliseconds. How much time the program takes to get a
response back to the programmer, after it is sent? Please tell me the answer with
explanation. Very urgent.
Sol) see it doesn't matter that wat the time is being taken to fill the bucket.after reaching
program it waits there for 10ms and back to the programmer in 20 ms.then total time to get
the response is 20ms +10 ms=30ms...it's so simple....
A file is transferred from one location to another in 'buckets'. The size of the bucket is 10
kilobytes. Each bucket gets filled at the rate of 0.0001 kilobytes per millisecond. The
transmission time from sender to receiver is 10 milliseconds per bucket. After the receipt of
the bucket the receiver sends an acknowledgement that reaches sender in 100
milliseconds. Assuming no error during transmission, write a formula to calculate the time
taken in seconds to successfully complete the transfer of a file of size N kilobytes.
(n/1000)*(n/10)*10+(n/100)
A fisherman's day is rated as good if he catches 9 fishes, fair if 7 fishes and bad if 5 fishes.
He catches 53 fishes in a week n had all good, fair n bad days in the week. So how many
good, fair n bad days did the fisher man had in the week
Ans:4 good, 1 fair n 2 bad days
Sol) Go to river catch fish
4*9=36
7*1=7
2*5=10
36+7+10=53...
take what is given 53
good days means --- 9 fishes so 53/9=4(remainder=17) if u assume 5 then there is no
chance for bad days.
fair days means ----- 7 fishes so remaining 17 --- 17/7=1(remainder=10) if u assume 2 then
there is no chance for bad days.
bad days means -------5 fishes so remaining 10---10/5=2days.
Ans: 4 good, 1 fair, 2bad. ==== total 7 days.
x+y+z=7--------- eq1
9*x+7*y+5*z=53 -------eq2
multiply eq 1 by 9,
9*x+9*y+9*z=35 -------------eq3
from eq2 and eq3
2*y+4*z=10-----eq4
since all x,y and z are integer i sud put a integer value of y such that z sud be integer in eq
4 .....and ther will be two value y=1 or 3 then z = 2 or 1 from eq 4
for first y=1,z=2 then from eq1 x= 4
so 9*4+1*7+2*5=53.... satisfied
now for second y=3 z=1 then from eq1 x=3
so 9*3+3*7+1*5=53 ......satisfied
so finally there are two solution of this question
(x,y,z)=(4,1,2) and (3,3,1)...
Y catches 5 times more fishes than X. If total number of fishes caught by X and Y is 42,
then number of fishes caught by X?
Sol) Let no. of fish x catches=p
no. caught by y =r
r=5p.
r+p=42
then p=7,r=35