1.
2/3 rd. of the balls in a bag are red, the rest are Black. if 5/9th of the Red balls and 7/8th of the Black balls is defective, find the total number of balls in the bag given that the number of non -defective balls is 146
2.
If the operation ^ is defined by the equation x ^ y = 2x+y, what is the value of a in 2 ^ a=a^3?
3.
Prakash spent ₹ 89745 on his college fees, ₹ 51291 on personality Development Classes and the Remaining 27% of the total amount he had cash with him. what was the total amount?
4.
An owner of a cell phone charges his customer 23% more than the cost price. If a customer paid Rs 7011 for a cell phone, then what was the cost price of the cell phone?
5.
The ratio investments of two partners A and B is 11:12 and the ratio of their profits is 2 : 3. If A invested the money for 8 months ,then for how much time B invested his money ?
6.
A canteen requires 651 bananas for a week, totally how many bananas will it require for the months of April, May and June?
7.
A train travels 82.6 km/hr. How many meters will it travels in 15 minutes?
8.
A milk man mixed some water with milk to gain 25% by selling the mixture at the cost price .the ratio of water and milk is respectively?
9.
what is the value of [ log 10 (5 log 10 100)]2?
10.
Mrs. Roy spent RS 44620 on Deepawali shopping, Rs 32764 on buying laptop and the remaining 32% of the total amount she had as cash with her. what was the total amount?
11.
By selling 33 meters of cloth, once again the selling price of 11meters. find the gain percent.
12.
The total number of students in a school is 2140. If the number of girls in the school is 1200, then what is the ratio of the total number of boys to the total number of girls in the school?
13.
smita works in her office for 6 hours and kajal works in her office for 7 hours 30 minutes. find the ratio of their working hours?
14.
Samaria, Mahira and Kiara rented a set of DVD s at aren’t of Rs 578 .if they used it for 8 hours 12hours and 14 hours respectively ,what is the Kiara’s share of rent to be paid ?
15.
A,B and C started a business investing amounts in the ratio of 5:6:8 respectively .after one year ,C withdraw 50% of the amount .A invested an additional amount 60% of the original amount invested by him .In what ratio the profit earned at the end of the 2 year should be distributed among A,B and C respectively?
16.
56 men can complete a piece of work in 24 days .in how many days can 42 men complete the same piece of work?
17.
Tap A fills a tank in 4 hours and Tap B empties the full tank in 24 hours. A and B are opened alternately for 1 hour each. every 2hours the level of water is found to increase by 0.5m. the depth of the tank?
18.
sound is said to travel in air at about 1100feet per second. A man hears the axe striking the tree 11/5 seconds after he sees it strike the tree. How far is the man from the wood chopper?
19.
The time taken by a train 180m long, travelling at 42kmph ,in passing a person walking in the same direction at 6kmph ,will be?
20.
If the simple interest for 6 years be equal to 30 % of the principal, it will be equal to the principal after
21.
what would be the compound interest accrued on the amount of Rs 8000 at the rate of 15 p.c.p.a. in 3 years?
22.
The area of a triangle whose sides are of length 3cm, 4cm, 5cm is The area of a triangle whose sides are of length 3cm, 4cm, 5cm is
23.
what is 28% of 36% of 5/7 th of 5000?
25.
The cost of 36 kg of rice last year was RS 1044 and the cost of Rs 24 kg of the rice is Rs 768. what is the difference between the cost per kg of rice last year and the cost per kg of rice this year?
26.
0.5*0.5+0.5/5 is equal to
27.
A sum of money at simple interest doubles in 7 years .it will become four times in
28.
find the HCF and LCM of 2/3,8/9 ,16/81, 10/27
29.
which of the following multipliers will cause a number to be increased by 29.7%
30.
if log (a/b) +log (b/a) = log (a+b), then
31.
The below given program was run with the following command line parameters: Ravi, kiran, Vicky, Sai
#include
int main (int argc, char**argv)
{
Printf (“%s\n”, argv [--argc]);
Return 0;
}
What is the output?
32.
2) What does argc and argv indicates in int main (int argc, char *argv [])
33.
In which datatype the size is varied?
34.
what is the output ?
#include
Void main ()
{
int i=1, j=5;
int k=i & j==7;
printf (“%d\n”, K);
}
35.
what is the output ?
# include
Void main ()
{
int a = -2;
printf (“%d”, a++);
printf (“%d”, --a);
}
36.
What is the output ?
# include
Void main ()
{
int i;
for (i=1; i<7; i++)
{
If (i<=3)
Continue;
Printf (“hello %d “, i);
}
}
37.
What is the output ?
#include
int main ()
{
Printf (“%d”, printf (“%d”, printf (“%d”, printf (“%s”,” welcome to newjobworld”))));
return (0);
}
38.
What is the output ?
# include
int fun (int n)
{
int i, j, sum =0;
for (i=1; i<=n; i++)
for (j=i; j<= i; j++)
sum =sum + j;
return (sum);
}
int main ()
{
printf (“%d”, fun (20));
get char ();
return 0;
}
39.
What is the output ?
#include
Char *get String ()
{
Char *str = “welcome to newjobworld”;
return str;
}
int main ()
{
printf (“%s”, get String ());
Get char ();
return 0;
}
40.
What is the output ?
# include
int main ()
{
int n;
for (n=6; n! =0; n--)
print f (“n=%d”, n--)
get char ();
return 0;
}