options stringlengths 37 300 | correct stringclasses 5
values | annotated_formula stringlengths 7 727 | problem stringlengths 5 967 | rationale stringlengths 1 2.74k | program stringlengths 10 646 |
|---|---|---|---|---|---|
a ) 4500 , b ) 4250 , c ) 4350 , d ) 4800 , e ) 4150 | d | multiply(subtract(divide(multiply(79, add(79, 1)), 2), multiply(divide(subtract(79, 1), 2), add(divide(subtract(79, 1), 2), 1))), 3) | if 1 + 2 + 3 + . . . + n = n ( n + 1 ) , then 3 ( 1 + 3 + 5 + . . . . + 79 ) = ? | "explanation : to solve this use the formula of ap , sn = ( n / 2 ) ( a + l ) . . . . . . . . . . . . . . . . ( 1 ) to find n , use = > tn = a + ( n - 1 ) d = > 79 = 1 + ( n - 1 ) 2 = > n = 40 use value of n in ( 1 ) then , sn = ( 40 / 2 ) ( 1 + 79 ) = 1600 ans : - 3 ( sn ) = 4800 answer : d" | a = 79 + 1
b = 79 * a
c = b / 2
d = 79 - 1
e = d / 2
f = 79 - 1
g = f / 2
h = g + 1
i = e * h
j = c - i
k = j * 3
|
a ) 5.1 , b ) 7.1 , c ) 7.2 , d ) 7.5 , e ) 8.0 | a | divide(multiply(multiply(4, 7), const_2), add(4, 7)) | a river boat leaves silver town and travels upstream to gold town at an average speed of 4 kilometers per hour . it returns by the same route at an average speed of 7 kilometers per hour . what is the average speed for the round - trip in kilometers per hour ? | "pick a number which is lcm of 7 and 4 = 18 . upstream time = 28 / 4 = 7 hrs downstream time = 28 / 7 = 4 hrs total time = 11 hrs total distance = 56 average speed = 56 / 11 = 5.1 km / hr" | a = 4 * 7
b = a * 2
c = 4 + 7
d = b / c
|
a ) 24 , b ) 25 , c ) 23 , d ) 22 , e ) 26.5 | e | divide(add(multiply(30, const_10), divide(multiply(30, const_10), const_2)), add(divide(multiply(30, const_10), 25), divide(divide(multiply(30, const_10), const_2), 30))) | a certain car traveled twice as many miles from town a to town b as it did from town b to town c . from town a to town b , the car averaged 25 miles per gallon , and from town b to town c , the car averaged 30 miles per gallon . what is the average miles per gallon that the car achieved on its trip from town a through ... | step 1 ) took lcm of 25 and 30 . . came as 150 . step 2 ) 150 distance between b to c . . . do 150 / 30 hence 5 gallons used step 3 ) twice distance . . hence 150 * 2 = 300 . . . do as above . . 300 / 25 = 12 gallons used step 4 ) total gallons . . 5 + 12 = 17 gallons step ) total miles = 150 + 300 = 450 miles hence . ... | a = 30 * 10
b = 30 * 10
c = b / 2
d = a + c
e = 30 * 10
f = e / 25
g = 30 * 10
h = g / 2
i = h / 30
j = f + i
k = d / j
|
a ) 2 , b ) 3 , c ) 5 , d ) 8 , e ) 10 | a | divide(multiply(add(2, 2), 2), multiply(2, 2)) | if w , x , y and z are distinct odd positive integers , then the maximum value of the expression ( w ^ 2 + x ^ 2 ) * ( y ^ 2 + z ^ 2 ) can be divisible by ? | any odd number square will give odd number only . . similarly wen we add 2 odd numbers we will get even number . . wen we multiply 2 even owe will get even nuber . . so the result of the above expression is an even number only . . hence it is divisible by 2 . . . answer : a | a = 2 + 2
b = a * 2
c = 2 * 2
d = b / c
|
a ) 50 , b ) 60 , c ) 75 , d ) 80 , e ) 85 | a | add(40, 10) | john found that the average of 15 numbers is 40 . if 10 is added to each number then the mean of number is ? | "( x + x 1 + . . . x 14 ) / 15 = 40 50 option a" | a = 40 + 10
|
a ) 5 % , b ) 10 % , c ) 15 % , d ) 25 % , e ) none | d | divide(subtract(const_100, subtract(const_100, 20)), divide(subtract(const_100, 20), const_100)) | if a ' s salary is 20 % less than b ' s salary , by how much percent is b ' s salary more than a ' s ? | solution required percentage ‹ = › [ 20 / ( 100 - 20 ) x 100 ] % ‹ = › 25 % answer d | a = 100 - 20
b = 100 - a
c = 100 - 20
d = c / 100
e = b / d
|
a ) 22 , b ) 77 , c ) 26 , d ) 19 , e ) 31 | e | subtract(subtract(multiply(power(add(divide(10, const_100), const_1), 3), 1000), 1000), divide(multiply(3, multiply(10, 1000)), const_100)) | what will be the difference between simple interest and compound interest @ 10 % per annum on a sum of rs . 1000 after 3 years ? | "explanation : s . i . = rs . [ ( 1000 x 10 x 3 ) / 100 ] = rs . 300 c . i . = rs . [ 1000 x ( 1 + ( 10 / 100 ) ) 3 - 1000 ] = rs . 331 difference = rs . ( 331 - 300 ) = rs . 31 answer : e" | a = 10 / 100
b = a + 1
c = b ** 3
d = c * 1000
e = d - 1000
f = 10 * 1000
g = 3 * f
h = g / 100
i = e - h
|
a ) 151 , b ) 149 , c ) 152 , d ) 191.4 , e ) none of the above | d | divide(add(multiply(25, 190), subtract(165, 130)), 25) | the mean of 25 values was 190 . it was detected on rechecking that one value 165 was wrongly copied as 130 for the computation of the mean . find the correct mean . | "corrected mean = 190 × 25 − 130 + 165 / 25 = 4750 + 35 / 25 = 4785 / 25 = 191.4 answer d" | a = 25 * 190
b = 165 - 130
c = a + b
d = c / 25
|
a ) 1.78 , b ) 1.667 , c ) 1.15 , d ) 1.5 , e ) 1.2 | b | divide(5, const_3) | a man can swim in still water at 5 km / h , but takes twice as long to swim upstream than downstream . the speed of the stream is ? | m = 5 s = x ds = 5 + x us = 5 - x 5 + x = ( 5 - x ) 2 5 + x = 10 - 2 x 3 x = 5 x = 1.667 answer : b | a = 5 / 3
|
a ) 16 , b ) 64 , c ) 50 , d ) 144 , e ) 160 | a | divide(subtract(divide(multiply(divide(16, divide(10, const_100)), 90), const_100), multiply(divide(16, divide(10, const_100)), divide(const_1, const_2))), multiply(const_2, const_4)) | in an office , 10 percent of the workers have at least 5 years of service , and a total of 16 workers have at least 10 years of service . if 90 percent of the workers have fewer than 10 years of service , how many of the workers have at least 5 but fewer than 10 years of service ? | "( 10 / 100 ) workers = 16 = > number of workers = 160 ( 10 / 100 ) * workers = x + 16 = > x = 16 answer a" | a = 10 / 100
b = 16 / a
c = b * 90
d = c / 100
e = 10 / 100
f = 16 / e
g = 1 / 2
h = f * g
i = d - h
j = 2 * 4
k = i / j
|
a ) 80 days , b ) 100 days , c ) 120 days , d ) 110 days , e ) 200 days | e | inverse(subtract(inverse(20), inverse(multiply(inverse(subtract(const_1, multiply(inverse(20), 11))), 10)))) | micheal and adam can do together a piece of work in 20 days . after they have worked together for 11 days micheal stops and adam completes the remaining work in 10 days . in how many days micheal complete the work separately . | rate of both = 1 / 20 together they do = 1 / 20 * 11 = 11 / 20 left work = 1 - 11 / 20 = 9 / 20 adam completes 9 / 20 work in 10 day so he took 10 * 20 / 9 = 200 / 9 days to complete the left work alone . thus the rate of adam is 9 / 200 rate of micheal = 1 / 20 - 9 / 200 = 1 / 200 thus micheal takes 200 days to comple... | a = 1/(20)
b = 1/(20)
c = b * 11
d = 1 - c
e = 1/(d)
f = e * 10
g = 1/(f)
h = a - g
i = 1/(h)
|
a ) 150 m , b ) 180 m , c ) 152 m , d ) 140 m , e ) 160 m | d | subtract(multiply(640, divide(20, divide(20, const_3))), multiply(250, divide(40, divide(20, const_3)))) | a train crosses a platform of 250 m in 20 sec , same train crosses another platform of length 640 m in 40 sec . then find the length of the train ? | "length of the train be ‘ x ’ x + 250 / 20 = x + 640 / 40 2 x + 500 = x + 640 x = 140 m answer : d" | a = 20 / 3
b = 20 / a
c = 640 * b
d = 20 / 3
e = 40 / d
f = 250 * e
g = c - f
|
a ) 18 , b ) 19 , c ) 20 , d ) 17 , e ) 16 | a | add(subtract(11, subtract(11, add(const_3, const_2))), multiply(subtract(11, add(const_3, const_2)), const_2)) | the difference between the ages of two persons is 11 years . ten years ago , the elder one was twice as old as the younger one . the present age of the elder person is | "let their ages of x years and ( x + 11 ) years respectively . then , ( x + 11 ) - 10 = 2 ( x - 10 ) ⇔ x + 1 = 2 x - 20 ⇔ 3 x = 21 . ∴ present age of the elder person = ( 7 + 11 ) = 18 years . answer : 18 years" | a = 3 + 2
b = 11 - a
c = 11 - b
d = 3 + 2
e = 11 - d
f = e * 2
g = c + f
|
a ) 100 km , b ) 150 km , c ) 60 km , d ) 120 km , e ) 200 km | c | multiply(3, 20) | a walks at 10 kmph and 3 hours after his start , b cycles after him at 20 kmph . how far from the start does b catch up with a ? | "suppose after x km from the start b catches up with a . then , the difference in the time taken by a to cover x km and that taken by b to cover x km is 3 hours . x / 10 - x / 20 = 3 x = 60 km answer is c" | a = 3 * 20
|
a ) 382 , b ) 440 , c ) 278 , d ) 270 , e ) 881 | b | subtract(multiply(multiply(divide(72, const_3600), const_1000), 26), 80) | a goods train runs at the speed of 72 km / hr and crosses a 80 m long platform in 26 sec . what is the length of the goods train ? | "speed = 72 * 5 / 18 = 20 m / sec . time = 26 sec . let the length of the train be x meters . then , ( x + 80 ) / 26 = 20 x = 440 m . answer : b" | a = 72 / 3600
b = a * 1000
c = b * 26
d = c - 80
|
a ) $ 3.36 , b ) $ 6.46 , c ) $ 8.46 , d ) $ 10.08 , e ) $ 11.85 | b | add(multiply(2, 1.49), multiply(4, 0.87)) | what is the total cost of 2 sandwiches at $ 1.49 each and 4 sodas at $ 0.87 each ? | answer = b 2 * 1.49 + 4 * 0.87 = 2 ( 1.50 - 0.01 ) + 4 ( 1.00 - 0.13 ) = 3 + 4 - 0.02 - 0.52 = 7 - 0.54 = 6.46 | a = 2 * 1
b = 4 * 0
c = a + b
|
a ) 354354 , b ) 545454 , c ) 465785 , d ) 456573 , e ) 3251625 / 2 | e | multiply(1500000, multiply(multiply(add(const_1, divide(15, const_100)), subtract(const_1, divide(35, const_100))), add(const_1, divide(35, const_100)))) | population of a city in 20004 was 1500000 . if in 2005 there isan increment of 15 % , in 2006 there is a decrements of 35 % and in 2007 there is an increment of 45 % , then find the population of city atthe end of the year 2007 | "required population = p ( 1 + r 1 / 100 ) ( 1 - r 2 / 100 ) ( 1 + r 3 / 100 ) = p ( 1 + 15 / 100 ) ( 1 - 35 / 100 ) ( 1 + 45 / 100 ) = 3251625 / 2 e" | a = 15 / 100
b = 1 + a
c = 35 / 100
d = 1 - c
e = b * d
f = 35 / 100
g = 1 + f
h = e * g
i = 1500000 * h
|
a ) one , b ) two , c ) three , d ) four , e ) five | d | multiply(const_4, 1) | how many prime numbers between 1 and 100 are factors of 7,150 ? | "make prime factorization of 7,150 - - > 7,150 = 2 ∗ 5 ^ 2 ∗ 11 ∗ 13 so , 4 prime numbers between 1 and 100 ( namely 2 , 5 , 11 , and 13 ) are factors of 7,150 . answer : d ." | a = 4 * 1
|
a ) 12 , b ) 14 , c ) 16 , d ) 18 , e ) 20 | c | multiply(divide(60, subtract(multiply(137, 2), 61)), 2) | a firm is comprised of partners and associates in a ratio of 2 : 61 . if 60 more associates were hired , the ratio of partners to associates would be 4 : 137 . how many partners are currently in the firm ? | "the ratio 2 : 61 = 4 : 122 so the ratio changed from 4 : 122 to 4 : 137 . 137 - 122 = 15 which is 1 / 4 of the increase in 60 associates . the ratio changed from 16 : 488 to 16 : 548 . thus the number of partners is 16 . the answer is c ." | a = 137 * 2
b = a - 61
c = 60 / b
d = c * 2
|
a ) 22 , b ) 35 , c ) 27 , d ) 63 , e ) 25 | d | subtract(negate(18), multiply(subtract(7, 11), divide(subtract(7, 11), subtract(5, 7)))) | 5 , 7 , 11 , 18 , 33 , ( . . . ) | "explanation : 5 5 × 2 - 3 = 7 7 × 2 - 3 = 11 11 × 2 - 3 = 18 18 × 2 - 3 = 33 33 × 2 - 3 = 63 answer : option d" | a = negate - (
|
a ) 4 , b ) 8 , c ) 12 , d ) 15 , e ) 20 | c | subtract(subtract(multiply(5, 5), add(5, const_4)), power(const_2, const_2)) | if the radius of a circle that centers at the origin is 5 , how many w points on the circle have integer coordinates ? | "i understand this might not be required but i used the equation of a circle . since the origin is at 0 , x ^ 2 + y ^ 2 = 5 ^ 2 . x , y could be + / - ( 0,5 or 5,0 ) - 4 possibilities . x , y could be + / - ( 3,4 or 4,3 ) - 8 possibilities . ans : w = c" | a = 5 * 5
b = 5 + 4
c = a - b
d = 2 ** 2
e = c - d
|
a ) 33 , b ) 46 , c ) 59 , d ) 66 , e ) 80 | a | add(divide(subtract(252, 14), 7), const_1) | how many multiples of 7 are there between 14 and 252 ? | "it should be mentioned whether 14 and 252 are inclusive . if 14 and 252 are inclusive , then the answer is ( 252 - 14 ) / 7 + 1 = 35 . if 14 and 252 are not inclusive , then the answer is ( 245 - 21 ) / 7 + 1 = 33 . since oa is a , then we have not inclusive case ." | a = 252 - 14
b = a / 7
c = b + 1
|
a ) 14 , b ) - 14 , c ) 23 , d ) 2 , - 3 , e ) 34 | b | multiply(4, 2) | solve x 2 â € “ 3 x â € “ 4 = 0 . | this one factors easily : x 2 â € “ 3 x â € “ 4 = 0 ( x + 1 ) ( x â € “ 4 ) = 0 x + 1 = 0 or x â € “ 4 = 0 x = â € “ 1 or x = 4 the solution is x = â € “ 1 , 4 answer b | a = 4 * 2
|
['a ) 9 : 38', 'b ) 9 : 31', 'c ) 9 : 32', 'd ) 9 : 39', 'e ) 9 : 35'] | c | multiply(divide(1, 2), power(divide(3, 4), const_2)) | the height of two right circular cones are in the ratio 1 : 2 and their perimeters of their bases are in the ratio 3 : 4 , the ratio of their volume is ? | 9 : 32 answer : c | a = 1 / 2
b = 3 / 4
c = b ** 2
d = a * c
|
a ) 277 , b ) 36 , c ) 26 , d ) 72 , e ) none of these | c | divide(multiply(93.6, const_100), 360) | ? % of 360 = 93.6 | "? % of 360 = 93.6 or , ? = 93.6 × 100 / 360 = 26 answer c" | a = 93 * 6
b = a / 360
|
a ) $ 1500 , b ) $ 1600 , c ) $ 1700 , d ) $ 1800 , e ) $ 1900 | d | divide(450, subtract(const_1, divide(3, 4))) | linda spent 3 / 4 of her savings on furniture and the rest on a tv . if the tv cost her $ 450 , what were her original savings ? | "if linda spent 3 / 4 of her savings on furnitute , the rest 4 / 4 - 3 / 4 = 1 / 4 on a tv but the tv cost her $ 450 . so 1 / 4 of her savings is $ 450 . so her original savings are 4 times $ 450 = $ 1800 correct answer d" | a = 3 / 4
b = 1 - a
c = 450 / b
|
a ) 278 , b ) 277 , c ) 278 , d ) 450 , e ) 650 | e | subtract(multiply(const_10, 150), add(multiply(1, 100), multiply(5, 150))) | a man purchased 1 blankets @ rs . 100 each , 5 blankets @ rs . 150 each and two blankets at a certain rate which is now slipped off from his memory . but he remembers that the average price of the blankets was rs . 150 . find the unknown rate of two blankets ? | "10 * 150 = 1500 1 * 100 + 5 * 150 = 850 1500 – 850 = 650 answer : e" | a = 10 * 150
b = 1 * 100
c = 5 * 150
d = b + c
e = a - d
|
a ) 21 , b ) 25 , c ) 29 , d ) 33 , e ) 37 | c | divide(multiply(divide(29, 4), 16), 4) | rice weighing 29 / 4 pounds was divided equally and placed in 4 containers . how many ounces of rice were in each container ? ( note that 1 pound = 16 ounces ) | "29 / 4 ÷ 4 = 29 / 16 pounds in each container 29 / 16 pounds * 16 ounces / pound = 29 ounces in each container the answer is c ." | a = 29 / 4
b = a * 16
c = b / 4
|
a ) 12 , b ) 16 , c ) 17 , d ) 18 , e ) 20 | d | divide(90, multiply(add(15, 3), const_0_2778)) | the speed at which a man can row a boat in still water is 15 km / hr . if he rows downstream , where the speed of current is 3 km / hr , how many seconds will he take to cover 90 meters ? | "the speed of the boat downstream = 15 + 3 = 18 km / hr 18 km / hr * 5 / 18 = 5 m / s the time taken to cover 90 meters = 90 / 5 = 18 seconds . the answer is d ." | a = 15 + 3
b = a * const_0_2778
c = 90 / b
|
a ) [ 25 ] , b ) [ 135 ] , c ) [ 30 ] , d ) [ 90 ] , e ) [ 45 ] | e | divide(multiply(divide(10, 2), multiply(3, 9)), const_3) | for all positive integers m , [ m ] = 3 m when m is odd and [ m ] = ( 1 / 2 ) * m when m is even . what is [ 9 ] * [ 10 ] equivalent to ? | [ 9 ] * [ 10 ] = 27 * 5 = 135 = 3 * 45 = [ 45 ] the answer is e . | a = 10 / 2
b = 3 * 9
c = a * b
d = c / 3
|
a ) 0 , b ) 1 / 12 , c ) 5 / 12 , d ) 7 / 18 , e ) 4 / 9 | c | multiply(add(const_12, const_3), power(divide(1, 6), const_2)) | a cube with its sides numbered 1 through 6 is rolled twice , first landing on a and then landing on b . if any roll of the cube yields an equal chance of landing on any of the numbers 1 through 6 , what is the probability q that a + b is prime ? | "total # of outcomes is 6 * 6 = 36 ; favorable outcomes : a - b - - > prime 1 - 1 - - > 2 ; 1 - 2 - - > 3 ; 2 - 1 - - > 3 ; 1 - 4 - - > 5 ; 4 - 1 - - > 5 ; 2 - 3 - - > 5 ; 3 - 2 - - > 5 ; 1 - 6 - - > 7 ; 6 - 1 - - > 7 ; 2 - 5 - - > 7 ; 5 - 2 - - > 7 ; 3 - 4 - - > 7 ; 4 - 3 - - > 7 ; 6 - 5 - - > 11 ; 5 - 6 - - > 11 . to... | a = 12 + 3
b = 1 / 6
c = b ** 2
d = a * c
|
a ) 15.12 , b ) 16.33 , c ) 16.35 , d ) 16.3 , e ) 16.32 | a | divide(add(add(multiply(30, 11.50), multiply(20, 14.25)), multiply(divide(add(multiply(30, 11.50), multiply(20, 14.25)), const_100), 20)), add(30, 20)) | arun purchased 30 kg of wheat at the rate of rs . 11.50 per kg and 20 kg of wheat at the rate of 14.25 per kg . he mixed the two and sold the mixture . approximately what price per kg should be sell the mixture to make 20 % profit ? | "c . p . of 50 kg wheat = ( 30 * 11.50 + 20 * 14.25 ) = rs . 630 . s . p . of 50 kg wheat = 120 % of rs . 630 = 120 / 100 * 630 = rs . 756 s . p . per kg = 756 / 50 = rs . 15.12 answer : a" | a = 30 * 11
b = 20 * 14
c = a + b
d = 30 * 11
e = 20 * 14
f = d + e
g = f / 100
h = g * 20
i = c + h
j = 30 + 20
k = i / j
|
a ) 0.01 , b ) 0.0005 , c ) 0.25 , d ) 0.005 , e ) none of these | a | multiply(divide(divide(2, const_100), 2), const_2) | double of quarter of 2 percent written as a decimal is : | "explanation : solution : ( 2 ) * ( 1 / 4 ) * 2 % = 2 * ( 1 / 4 * 2 / 100 ) = 0.01 . answer : a" | a = 2 / 100
b = a / 2
c = b * 2
|
a ) 14 kmph , b ) 15 kmph , c ) 13 kmph , d ) 12 kmph , e ) none of these | b | divide(add(multiply(divide(const_3, const_2), const_3.0), 2), subtract(divide(const_3, const_2), 1)) | a boat covers a certain distance downstream in 1 hour , while it comes back in 11 ⁄ 2 hours . if the speed of the stream be 3 kmph , what is the speed of the boat in still water ? | "explanation : let the speed of the water in still water = x given that speed of the stream = 3 kmph speed downstream = ( x + 3 ) kmph speed upstream = ( x - 3 ) kmph he travels a certain distance downstream in 1 hour and come back in 11 ⁄ 2 hour . ie , distance travelled downstream in 1 hour = distance travelled upstr... | a = 3 / 2
b = a * 3
c = b + 2
d = 3 / 2
e = d - 1
f = c / e
|
a ) 0.9 , b ) 0.75 , c ) 0.6 , d ) 0.88 , e ) 0.5 | d | divide(subtract(100, add(9, 3)), 100) | a certain bag contains 100 balls â € ” 50 white , 30 green , 8 yellow , 9 red , and 3 purple . if a ball is to be chosen at random , what is the probability that the ball will be neither red nor purple ? | "according to the stem the ball can be white , green or yellow , so the probability is ( white + green + yellow ) / ( total ) = ( 50 + 30 + 8 ) / 100 = 88 / 100 = 0.88 . answer is d" | a = 9 + 3
b = 100 - a
c = b / 100
|
a ) 18 , b ) 26 , c ) 14 , d ) 18.7 , e ) 91 | d | divide(1056, multiply(multiply(const_2, divide(add(add(multiply(const_3, const_100), multiply(const_1, const_10)), const_4), const_100)), 9)) | if the wheel is 9 cm then the number of revolutions to cover a distance of 1056 cm is ? | "2 * 22 / 7 * 9 * x = 1056 = > x = 18.7 answer : d" | a = 3 * 100
b = 1 * 10
c = a + b
d = c + 4
e = d / 100
f = 2 * e
g = f * 9
h = 1056 / g
|
a ) $ 135656 , b ) $ 137500 , c ) $ 134446 , d ) $ 123265 , e ) $ 124564 | b | divide(add(80000, 30000), subtract(const_1, divide(20, const_100))) | kanul spent $ 80000 in buying raw materials , $ 30000 in buying machinery and 20 % of the total amount he had as cash with him . what was the total amount ? | "let the total amount be x then , ( 100 - 20 ) % of x = 80000 + 30000 80 % of x = 110000 80 x / 100 = 110000 x = $ 1100000 / 8 x = $ 137500 answer is b" | a = 80000 + 30000
b = 20 / 100
c = 1 - b
d = a / c
|
a ) 101 , b ) 107 , c ) 111 , d ) 185 , e ) none | c | sqrt(add(power(sqrt(subtract(37, multiply(const_2, 4107))), const_2), multiply(const_4, 4107))) | the product of two numbers is 4107 . if the h . c . f . of these numbers is 37 , then the greater number is : | "explanation let the numbers be 37 a and 37 b . then , 37 a x 37 b = 4107 ab = 3 . now , co - primes with product 3 are ( 1 , 3 ) . so , the required numbers are ( 37 x 1 , 37 x 3 ) i . e . , ( 37 , 111 ) . greater number = 111 . answer c" | a = 2 * 4107
b = 37 - a
c = math.sqrt(b)
d = c ** 2
e = 4 * 4107
f = d + e
g = math.sqrt(f)
|
a ) 2 , b ) 4 , c ) 8 , d ) 16 , e ) 32 | b | divide(power(2, divide(power(2, 3), power(2, 2))), power(2, 2)) | if the operation ø is defined for all positive integers x and w by x ø w = ( 2 ^ x ) / ( 2 ^ w ) then ( 3 ø 1 ) ø 2 = ? | "3 ø 1 = 2 ^ 3 / 2 ^ 1 = 4 4 ø 2 = 2 ^ 4 / 2 ^ 2 = 4 the answer is b ." | a = 2 ** 3
b = 2 ** 2
c = a / b
d = 2 ** c
e = 2 ** 2
f = d / e
|
a ) 60 , b ) 62 , c ) 64 , d ) 61 , e ) 66 | d | subtract(multiply(4, const_2), multiply(2, const_2)) | if the average ( arithmetic mean ) of x , x + 2 , and x + 4 is 63 , what is the value of x ? | "am of x , x + 2 , and x + 4 = x + ( x + 2 ) + ( x + 4 ) / 3 = 3 x + 6 / 3 = x + 2 given that x + 2 = 63 x = 61 answer : d" | a = 4 * 2
b = 2 * 2
c = a - b
|
a ) 22 , b ) 28 , c ) 77 , d ) 99 , e ) 187 | e | multiply(divide(multiply(17, add(2, const_1)), subtract(multiply(4, 9), multiply(17, 2))), add(9, 2)) | a movie buff owns movies on dvd and on blu - ray in a ratio of 9 : 2 . if she buys 2 more blu - ray movies , that ratio would change to 17 : 4 . if she owns movies on no other medium , what was the original number of movies in her library before the extra purchase ? | "if u can just keep an eye on the options 99 is the only multiple of 9 in options given . . so you can mark it wid in seconds . now coming to the process m ( d ) = 9 x and b ( d ) = 2 x now from the next line the new eqn becomes 9 x / ( 2 x + 2 ) = 17 / 4 solving it 36 x = 34 x + 34 x = 17 which means m ( d ) = 153 and... | a = 2 + 1
b = 17 * a
c = 4 * 9
d = 17 * 2
e = c - d
f = b / e
g = 9 + 2
h = f * g
|
a ) 31 / 32 , b ) 7 / 8 , c ) 1 / 4 , d ) 1 / 8 , e ) 1 / 16 | a | add(add(add(add(divide(1, 2), divide(divide(1, 2), 2)), divide(divide(divide(1, 2), 2), 2)), divide(divide(divide(divide(1, 2), 2), 2), 2)), divide(divide(divide(divide(divide(1, 2), 2), 2), 2), 2)) | if 1 / 2 of the air in a tank is removed with each stroke of a vacuum pump , what fraction of the original amount of air has been removed after 5 strokes ? | left after 1 st stroke = 1 / 2 left after 2 nd stroke = 1 / 2 * 1 / 2 = 1 / 4 left after 3 rd stroke = 1 / 2 * 1 / 4 = 1 / 8 left after 4 th stroke = 1 / 2 * 1 / 8 = 1 / 16 left after 5 th stroke = 1 / 2 * 1 / 16 = 1 / 32 so removed = 1 - 1 / 32 = 31 / 32 | a = 1 / 2
b = 1 / 2
c = b / 2
d = a + c
e = 1 / 2
f = e / 2
g = f / 2
h = d + g
i = 1 / 2
j = i / 2
k = j / 2
l = k / 2
m = h + l
n = 1 / 2
o = n / 2
p = o / 2
q = p / 2
r = q / 2
s = m + r
|
a ) 76 kg , b ) 77 kg , c ) 78.5 kg , d ) data inadequate , e ) none of these | c | add(65, multiply(9, 1.5)) | the average weight of 9 persons increases by 1.5 kg . if a person weighing 65 kg is replaced by a new person , what could be the weight of the new person ? | "total weight increases = 9 × 1.5 = 13.5 kg so the weight of new person = 65 + 13.5 = 78.5 kg answer c" | a = 9 * 1
b = 65 + a
|
a ) 1000 , b ) 2217 , c ) 1200 , d ) 2777 , e ) 2991 | c | divide(1344, add(divide(multiply(divide(add(multiply(2, 5), 2), 5), 5), const_100), const_1)) | find the principle on a certain sum of money at 5 % per annum for 2 2 / 5 years if the amount being rs . 1344 ? | "1344 = p [ 1 + ( 5 * 12 / 5 ) / 100 ] p = 1200 answer : c" | a = 2 * 5
b = a + 2
c = b / 5
d = c * 5
e = d / 100
f = e + 1
g = 1344 / f
|
a ) 1 , b ) 2 , c ) 50 , d ) 49 , e ) 97 | c | divide(subtract(multiply(100, divide(99, const_100)), multiply(100, divide(98, const_100))), subtract(const_1, divide(98, const_100))) | there are 100 employees in a room . 99 % are managers . how many managers must leave the room to bring down the percentage of manager to 98 % ? | "we have 99 managers and 1 director . that 1 director to compose 2 % of the total number of people , there must be 50 people in the room , hence 50 managers must leave . answer : c ." | a = 99 / 100
b = 100 * a
c = 98 / 100
d = 100 * c
e = b - d
f = 98 / 100
g = 1 - f
h = e / g
|
a ) s . 11,000 , b ) s . 11,300 , c ) s . 11,500 , d ) s . 11,700 , e ) s . 11,900 | e | subtract(floor(divide(multiply(divide(add(divide(subtract(subtract(multiply(const_10, 5000), 5000), add(4000, 5000)), const_3), add(4000, 5000)), multiply(const_10, 5000)), multiply(add(const_3, const_4), 5000)), const_1000)), const_1) | a , b , c subscribe rs . 50,000 for a business . a subscribes rs . 4000 more than b and b rs . 5000 more than c . out of a total profit of rs . 35,000 , b receives : | "let c = x . then , b = x + 5000 and a = x + 5000 + 4000 = x + 9000 . so , x + x + 5000 + x + 9000 = 50000 3 x = 36000 x = 12000 a : b : c = 21000 : 17000 : 12000 = 21 : 17 : 12 . b ' s share = rs . ( 35000 x 17 / 50 ) = rs . 11,900 . e" | a = 10 * 5000
b = a - 5000
c = 4000 + 5000
d = b - c
e = d / 3
f = 4000 + 5000
g = e + f
h = 10 * 5000
i = g / h
j = 3 + 4
k = j * 5000
l = i * k
m = l / 1000
n = math.floor(m)
o = n - 1
|
a ) 128 , b ) 142 , c ) 143 , d ) 141 , e ) 129 | e | divide(subtract(subtract(multiply(const_100, const_10), const_1), add(multiply(add(const_10, const_4), 7), 5)), 7) | how many 3 digit positive integers e exist that when divided by 7 leave a remainder of 5 ? | "minimum three digit number is 100 and maximum three digit number is 999 . the first three digit number that leaves remainder 5 when divided by 7 is 103 . 14 * 7 = 98 + 5 = 103 the second three digit number that leaves remainder 5 when divided by 7 is 110 . 15 * 7 = 105 + 5 = 110 the third three digit number that leave... | a = 100 * 10
b = a - 1
c = 10 + 4
d = c * 7
e = d + 5
f = b - e
g = f / 7
|
a ) 62 % , b ) 6.2 % , c ) 0.62 % , d ) 0.062 % , e ) 0.0062 % | c | multiply(divide(6.2, 1000), const_100) | 6.2 is what percent of 1000 ? | "10 % of 1000 is 100 . 6.2 is way less than 100 ( 10 % of 1000 ) . so it can not be 62 % of 1000 . eliminate option a 1 % of 1000 is 10 . 6.2 is less than 10 . so it cant be 6.2 % . eliminate option b ( 0.5 % ) i . e . half of 1 % of 1000 is 5 . but 6.2 is greater than 5 . . so it has to be greater than 0.5 % . . . hen... | a = 6 / 2
b = a * 100
|
a ) 6 cm , b ) 14 cm , c ) 16 cm , d ) 23 cm , e ) 29 cm | c | divide(multiply(const_4, divide(power(12, const_3), power(12, const_2))), const_3) | a metallic sphere of radius 12 cm is melted and drawn into a wire , whose radius of cross section is 12 cm . what is the length of the wire ? | "volume of the wire ( in cylindrical shape ) is equal to the volume of the sphere . π ( 12 ) ^ 2 * h = ( 4 / 3 ) π ( 12 ) ^ 3 = > h = 16 cm answer : c" | a = 12 ** 3
b = 12 ** 2
c = a / b
d = 4 * c
e = d / 3
|
a ) 28 kmph , b ) 60 kmph , c ) 70 kmph , d ) 80 kmph , e ) 90 kmph | a | divide(252, multiply(divide(3, 2), 6)) | a van takes 6 hours to cover a distance of 252 km . how much should the speed in kmph be maintained to cover the same direction in 3 / 2 th of the previous time ? | "time = 6 distence = 252 3 / 2 of 6 hours = 6 * 3 / 2 = 9 hours required speed = 252 / 9 = 28 kmph a" | a = 3 / 2
b = a * 6
c = 252 / b
|
a ) 40,12 , b ) 20,10 , c ) 25,15 , d ) 30,10 , e ) none of these | a | subtract(add(divide(multiply(28, 5), subtract(5, const_1)), 5), 28) | the ages of two persons differ by 28 years . if 5 years ago , the elder one be 5 times as old as the younger one , their present ages ( in years ) are respectively | "explanation : let their ages be x and ( x + 28 ) years . 5 ( x - 5 ) = ( x + 28 - 5 ) or 4 x = 48 or x = 12 . their present ages are 40 years and 12 years option a" | a = 28 * 5
b = 5 - 1
c = a / b
d = c + 5
e = d - 28
|
a ) 20 , b ) 18 , c ) 16 , d ) 11 , e ) 5 | d | divide(add(21, 1), 2) | 3 x + y = 21 , and x + 3 y = 1 . find the value of 2 x + 2 y | "add these two equations 4 x + 4 y = 22 divide by 2 ( to get 2 x + 2 y ) answer will be d . 11" | a = 21 + 1
b = a / 2
|
a ) 3 , b ) 5 , c ) 6 , d ) 8 , e ) 9 | d | divide(subtract(const_1, multiply(9, divide(const_1, 15))), divide(const_1, 20)) | x can finish a work in 20 days . y can finish the same work in 15 days . yworked for 9 days and left the job . how many days does x alone need to finish the remaining work ? | "work done by x in 1 day = 1 / 20 work done by y in 1 day = 1 / 15 work done by y in 9 days = 9 / 15 = 3 / 5 remaining work = 1 – 3 / 5 = 2 / 5 number of days in which x can finish the remaining work = ( 2 / 5 ) / ( 1 / 20 ) = 8 d" | a = 1 / 15
b = 9 * a
c = 1 - b
d = 1 / 20
e = c / d
|
a ) 9500 , b ) 17500 , c ) 18200 , d ) 19500 , e ) 6750 | d | add(add(multiply(multiply(const_100, const_10), const_10), multiply(4550, const_2)), multiply(const_100, const_4)) | thomas worked in the factory @ 4550 / - per week . owner told him to give the amount after one month . then how much amount will be paid to thomas ? | total salary paid to thomas in one week : 4550 / - salary for one day : 4550 / 7 = 650 / - total for one month = 650 / - * 30 days = 19500 / - answer is option ( d ) | a = 100 * 10
b = a * 10
c = 4550 * 2
d = b + c
e = 100 * 4
f = d + e
|
a ) 6.25 , b ) 6.5 , c ) 6.15 , d ) 7 , e ) 8 | c | divide(subtract(282, multiply(10, 3.6)), 40) | in the first 10 overs of a cricket game , the run rate was only 3.6 . what should be the run rate in the remaining 40 overs to reach the target of 282 runs ? | "10 overs - run rate = 3.6 runs scored in first 10 overs = 36 remaining overs 40 total runs to be scored = 282 32 runs already scored 282 - 36 = 246 246 runs to be scored in 40 overs let required runrate be x 40 * x = 246 x = 246 / 40 x = 6.15 the required runrate is 6.15 answer : c" | a = 10 * 3
b = 282 - a
c = b / 40
|
a ) 1 / 2 , b ) 2 / 5 , c ) 3 / 5 , d ) 3 / 10 , e ) 7 / 10 | a | add(multiply(divide(3, 5), subtract(const_1, divide(1, 3))), multiply(divide(const_2, 5), subtract(const_1, divide(3, 4)))) | in a tree , 3 / 5 of the birds are parrots while the rest are toucans . if 1 / 3 of the parrots are female and 3 / 4 of the toucans are female , what fraction of the birds in the tree are male ? | the fraction of birds that are male parrots is ( 2 / 3 ) ( 3 / 5 ) = 2 / 5 . the fraction of birds that are male toucans is ( 1 / 4 ) ( 2 / 5 ) = 1 / 10 . the total fraction of male birds is 2 / 5 + 1 / 10 = 1 / 2 . the answer is a . | a = 3 / 5
b = 1 / 3
c = 1 - b
d = a * c
e = 2 / 5
f = 3 / 4
g = 1 - f
h = e * g
i = d + h
|
a ) 25 , b ) 33 , c ) 30 , d ) 67 , e ) 75 | c | multiply(divide(multiply(subtract(divide(multiply(multiply(const_4, const_4), const_100), 8), divide(multiply(multiply(const_4, const_4), const_100), add(8, divide(multiply(8, 50), const_100)))), 8), multiply(multiply(const_4, const_4), const_100)), const_100) | working together at their respective constant rates , machine a and machine b can produce 1,800 units in 8 hours . working alone , machine b would complete that same output in 50 % more time . if machine a were to work on its own for an 8 - hour shift , what percent of the 1,800 unit total would it produce ? | "1 / a + 1 / b = 1 / t 1 / a + 1 / 12 = 1 / 8 ( 50 % more of 8 is 12 ) 1 / a = 1 / 24 machine a can produce 1800 units in 24 hrs , so it can produce 1800 * 8 / 24 = 600 units is 8 hrs . 600 is 30 % of 1800 . c is the answer" | a = 4 * 4
b = a * 100
c = b / 8
d = 4 * 4
e = d * 100
f = 8 * 50
g = f / 100
h = 8 + g
i = e / h
j = c - i
k = j * 8
l = 4 * 4
m = l * 100
n = k / m
o = n * 100
|
a ) 3 / 8 , b ) 3 / 16 , c ) 5 / 16 , d ) 3 / 32 , e ) 7 / 64 | d | multiply(power(divide(const_1, const_2), 5), multiply(choose(6, 5), divide(const_1, const_2))) | a coin is tossed 6 times . what is the probability of getting exactly 5 heads ? | "the number of possible outcomes is 2 ^ 6 = 64 there are 6 ways to get exactly 5 heads . p ( exactly 5 heads ) = 6 / 64 = 3 / 32 the answer is d ." | a = 1 / 2
b = a ** 5
c = math.comb(6, 5)
d = 1 / 2
e = c * d
f = b * e
|
a ) $ 24 , b ) $ 80 , c ) $ 90 , d ) $ 120 , e ) $ 180 | a | divide(6, subtract(1, add(add(divide(1, 6), divide(1, 3)), divide(1, 4)))) | at a supermarket , john spent 1 / 4 of his money on fresh fruits and vegetables , 1 / 3 on meat products , and 1 / 6 on bakery products . if he spent the remaining $ 6 on candy , how much did john spend at the supermarket ? | "let ' s let t = total number of dollars spent at the supermarket . with this variable we can set up an equation and determine t . we are given that john spent 1 / 4 of his money on fresh fruits and vegetables , or ( 1 / 4 ) t , 1 / 3 on meat products , or ( 1 / 3 ) t , and 1 / 6 on bakery products , or ( 1 / 6 ) t . w... | a = 1 / 6
b = 1 / 3
c = a + b
d = 1 / 4
e = c + d
f = 1 - e
g = 6 / f
|
a ) 23 , b ) 24 , c ) 25 , d ) 26 , e ) 27 | c | subtract(multiply(13, const_2), const_1) | a and b are two multiples of 14 , and q is the set of consecutive integers between a and b , inclusive . if q contains 13 multiples of 14 , how many multiples of 7 are there in q ? | halfway between the multiples of 14 , there will be another multiple of 7 . the total number of multiples of 7 is 13 + 12 = 25 . the answer is c . | a = 13 * 2
b = a - 1
|
a ) 512 , b ) 768 , c ) 1024 , d ) 2048 , e ) 128 | e | subtract(power(2, add(6, const_1)), const_1) | the population of a bacteria colony doubles every day . if it was started 6 days ago with 2 bacteria and each bacteria lives for 12 days , how large is the colony today ? | "2 ^ 6 ( 2 ) = 2 ^ 7 = 128 the answer is e ." | a = 6 + 1
b = 2 ** a
c = b - 1
|
a ) 2800 , b ) 2700 , c ) 2900 , d ) 2200 , e ) 2300 | b | multiply(multiply(subtract(const_1, divide(20, const_100)), subtract(const_1, divide(55, const_100))), 7500) | in an election between two candidates , one got 55 % of the total valid votes , 20 % of the votes were invalid . if the total number of votes was 7500 , the number of valid votes that the other candidate got , was : | "b number of valid votes = 80 % of 7500 = 6000 . valid votes polled by other candidate = 45 % of 6000 = ( 45 / 100 x 6000 ) = 2700 ." | a = 20 / 100
b = 1 - a
c = 55 / 100
d = 1 - c
e = b * d
f = e * 7500
|
a ) 20.8 , b ) 30.4 , c ) 43.5 , d ) 32.5 , e ) 33.8 | c | multiply(divide(subtract(85, 48), 85), const_100) | the credit card and a global payment processing companies have been suffering losses for some time now . a well known company recently announced its quarterly results . according to the results , the revenue fell to $ 48.0 billion from $ 85.0 billion , a year ago . by what percent did the revenue fall ? | $ 85 - $ 48 = 37 $ ( 37 / 85 ) * 100 = 43.5 % answer : c | a = 85 - 48
b = a / 85
c = b * 100
|
a ) 3 , b ) 4 , c ) 5 , d ) 6 , e ) 7 | a | subtract(subtract(subtract(23, 10), 6), const_4) | 10 ^ 23 - 7 is divided by 6 , remainder is ? | anything power by 10 we got 10 and some zeros after that . ( i . e , 1000000000000000 . . . . ) on that , we minus 7 means , we must get last two digits is 93 . and 93 is divided by 6 , we get reminder 3 . answer : a | a = 23 - 10
b = a - 6
c = b - 4
|
a ) 34 , b ) 38 , c ) 40 , d ) 42 , e ) 44 | a | divide(add(110, 60), add(4, 1)) | in an examination , a student scores 4 marks for every correct answer and loses 1 mark for every wrong answer . if he attempts all 60 questions and secures 110 marks , the no of questions he attempts correctly is : | "explanation : let the number of correct answers be x . number of incorrect answers = ( 60 – x ) . 4 x – ( 60 – x ) = 110 = > 5 x = 170 = > x = 34 answer : a" | a = 110 + 60
b = 4 + 1
c = a / b
|
a ) 30 , b ) 34 , c ) 38 , d ) 42 , e ) 46 | d | add(add(add(add(divide(3.6, divide(8, const_60)), 3), 3), 3), 3) | the average speed of a car decreased by 3 miles per hour every successive 8 - minutes interval . if the car traveled 3.6 miles in the sixth 8 - minute interval , what was the average speed of the car , in miles per hour , in the first 8 minute interval ? | "( 3.6 miles / 8 minutes ) * 60 minutes / hour = 27 mph let x be the original speed . x - 5 ( 3 ) = 27 x = 42 mph the answer is d ." | a = 8 / const_60
b = 3 / 6
c = b + 3
d = c + 3
e = d + 3
f = e + 3
|
a ) 32 , b ) 64 , c ) 50 , d ) 144 , e ) 160 | a | divide(subtract(divide(multiply(divide(16, divide(10, const_100)), 90), const_100), multiply(divide(16, divide(10, const_100)), divide(const_1, const_2))), multiply(const_2, const_4)) | in an office , 20 percent of the workers have at least 5 years of service , and a total of 16 workers have at least 10 years of service . if 90 percent of the workers have fewer than 10 years of service , how many of the workers have at least 5 but fewer than 10 years of service ? | "( 10 / 100 ) workers = 16 = > number of workers = 160 ( 20 / 100 ) * workers = x + 16 = > x = 32 answer a" | a = 10 / 100
b = 16 / a
c = b * 90
d = c / 100
e = 10 / 100
f = 16 / e
g = 1 / 2
h = f * g
i = d - h
j = 2 * 4
k = i / j
|
a ) 7.5 kg , b ) 11 kg , c ) 30 kg , d ) 36.5 kg , e ) 71 kg | a | subtract(45, divide(subtract(add(multiply(30, subtract(45, add(30, 1))), 45), multiply(subtract(subtract(45, add(30, 1)), 1), 30)), const_2)) | when a student joe , weighing 45 kg , joins a group of students whose average weight is 30 kg , the average weight goes up by 1 kg . subsequently , if two students , excluding joe , leave the group the average weight comes back to 30 kg . what is the difference between the average weight of the two students who left an... | "after two persons leave the group the average remains the same . that means the weight of the two persons = 45 + 30 = 75 so , the average the two persons = 37.5 that gives the answer 45 - 37.5 = 7.5 answer a" | a = 30 + 1
b = 45 - a
c = 30 * b
d = c + 45
e = 30 + 1
f = 45 - e
g = f - 1
h = g * 30
i = d - h
j = i / 2
k = 45 - j
|
a ) 1 / 3 , b ) 1 / 9 , c ) 1 / 12 , d ) 2 / 9 , e ) none of these | b | divide(const_2, choose(add(const_3, const_3), const_3)) | what is the probability of getting a sum 9 from two throws of dice | "explanation : total number of cases = 6 * 6 = 36 favoured cases = [ ( 3,6 ) , ( 4,5 ) , ( 6,3 ) , ( 5,4 ) ] = 4 so probability = 4 / 36 = 1 / 9 answer : b" | a = 3 + 3
b = math.comb(a, 3)
c = 2 / b
|
a ) 13426 , b ) 23523 , c ) 13436 , d ) 14263 , e ) 15263 | b | divide(79523, add(const_3, const_3)) | if pintu is coded as 79523 in a certain code language , how would you code buntu in the same language ? | "1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x y z sooo . . . buntu is 23523 . . . answer : b" | a = 3 + 3
b = 79523 / a
|
a ) 8 , b ) 11 , c ) 10 , d ) 15 , e ) 6 | c | multiply(subtract(15, 10), const_2) | if neha is 10 both sonali and priyanka is 15 both sadaf and tanu is 10 . how much is prinka by the same system ? | c prinka is 10 , in a system that awards five for each vowel . | a = 15 - 10
b = a * 2
|
a ) 16 . , b ) 8 . , c ) 7 . , d ) 2 . , e ) - 2 . | b | subtract(add(14, 3), 9) | if ( a + b ) = 14 , ( b + c ) = 9 and ( c + d ) = 3 , what is the value of ( a + d ) ? | "given a + b = 14 = > a = 14 - b - - > eq 1 b + c = 9 c + d = 3 = > d = 3 - c - - > eq 2 then eqs 1 + 2 = > a + d = 14 - b + 3 - c = > 17 - ( b + c ) = > 17 - 9 = 8 . option b . . ." | a = 14 + 3
b = a - 9
|
a ) 9 % , b ) 10 % , c ) 11 % , d ) 15 % , e ) 90 % | d | divide(multiply(13, const_100), subtract(const_100, 13)) | during a sale , the price of a pair of shoes is marked down 13 % from the regular price . after the sale ends , the price goes back to the original price . what is the percent of increase to the nearest percent from the sale price back to the regular price for the shoes ? | "assume the price = 100 price during sale = 87 price after sale = 100 percent increase = 13 / 87 * 100 = 15 % approx . correct option : d" | a = 13 * 100
b = 100 - 13
c = a / b
|
a ) 2 , b ) 3 , c ) 4 , d ) 6 , e ) 60 / 7 | b | divide(4200, subtract(divide(6000, 2.5), subtract(divide(3000, 1), divide(6000, 3)))) | machine a can process 6000 envelopes in 3 hours . machines b and c working together but independently can process the same number of envelopes in 2.5 hours . if machines a and c working together but independently process 3000 envelopes in 1 hour , then how many hours would it take machine b to process 4200 envelopes . | "you can either take the amount of work done as the same as karishma has done or take the work done by each in the same time . i will do the latter 1 . work done in 1 hr by a is 2000 envelopes 2 . work done in 1 hr by a and c is 3000 envelopes 3 . so work done in 1 hr by c is 1000 envelopes 4 . work done in 1 hr by b a... | a = 6000 / 2
b = 3000 / 1
c = 6000 / 3
d = b - c
e = a - d
f = 4200 / e
|
a ) 75 kg , b ) 65 kg , c ) 55 kg , d ) 85 kg , e ) 101 kg | e | add(65, multiply(8, 4.5)) | the average weight of 8 persons increases by 4.5 kg when a new person comes in place of one of them weighing 65 kg . what might be the weight of the new person ? | "total weight increased = ( 8 x 4.5 ) kg = 36 kg . weight of new person = ( 65 + 36 ) kg = 101 kg . answer : e" | a = 8 * 4
b = 65 + a
|
a ) 25 , b ) 30 , c ) 90 , d ) 140 , e ) it can not be determined from the information given | b | subtract(multiply(60, const_2), multiply(45, const_2)) | if the average ( arithmetic mean ) of a and b is 45 and the average of b and c is 60 , what is the value of c â ˆ ’ a ? | "the arithmetic mean of a and b = ( a + b ) / 2 = 45 - - a + b = 90 - - 1 similarly for b + c = 120 - - 2 subtracting 1 from 2 we have c - a = 30 ; answer : b" | a = 60 * 2
b = 45 * 2
c = a - b
|
a ) 100000 , b ) 46 , c ) 577 , d ) 577 , e ) 767 | a | divide(multiply(100000, 10000), 110000) | the lcm and hcf of two numbers are 100000 and 10000 respectively . find the larger of the two numbers if their sum is 110000 . | "there are 2 approaches in solving this . methode 1 . hcf * lcm = the actual number . 100000 * 10000 = 1000000000 so the answer which we are looking for has to be a factor of 1000000000 . so among the options shortlist the answers by eliminating those numbers which is not divisible by 1000000000 . and then take the hig... | a = 100000 * 10000
b = a / 110000
|
a ) 560 , b ) 616 , c ) 672 , d ) 728 , e ) 784 | b | divide(59.32, subtract(2, floor(2))) | when positive integer x is divided by positive integer y , the result is 59.32 . what is the sum r of all possible 2 - digit remainders for x / y ? | "ans b 616 . . . remainders = . 32 = 32 / 100 = 8 / 25 = 16 / 50 and so on . . so two digit remainders are 16 + 24 + 32 + . . . . + 96 . . r = 8 ( 2 + 3 + 4 . . . . + 12 ) = 616 . b" | a = math.floor(2)
b = 2 - a
c = 59 / 32
|
a ) 9 , b ) 10 , c ) 12 , d ) 14 , e ) 16 | a | subtract(add(6, 8), 5) | a certain family has 3 sons : richard is 6 years older than david , and david is 8 years older than scott . if in 8 years , richard will be twice as old as scott , then how old was david 5 years ago ? | "let ' s say age of richard isr age of david isd age of scott iss now richard is 6 years older than david , i . e . r = d + 6 david is 8 years older than scott i . e . d = s + 8 if in 8 years , richard will be twice as old as scott i . e . r + 8 = 2 x ( s + 8 ) i . e . r + 8 = 2 s + 16 i . e . r = 2 s + 8 but r = d + 6... | a = 6 + 8
b = a - 5
|
a ) 18 % , b ) 20 % , c ) 22 % , d ) 35.29 % , e ) 55 % | d | multiply(divide(subtract(divide(add(const_100, 15), subtract(const_10, const_3)), divide(const_100, const_10)), divide(const_100, const_10)), const_100) | car dealership x , the total profit from sales increased by 15 percent over the previous years , while the number of cars sold decreased by 15 percent over the previous years . approximately what was the average percent increase in profit per car over the previous year . | "let profit be x and cars sold be y originally profit / car = x / y now it is 1.15 x / 0.85 y = 115 / 85 ( x / y ) increase in profit per car = ( ( 30 / 85 ) ( x / y ) ) / ( x / y ) * 100 = 35.29 % answer = d" | a = 100 + 15
b = 10 - 3
c = a / b
d = 100 / 10
e = c - d
f = 100 / 10
g = e / f
h = g * 100
|
a ) 3 , b ) 6 , c ) 9 , d ) 72 , e ) 14 | d | multiply(divide(42, add(const_1, add(const_0_25, divide(const_1, const_2)))), const_3) | jill has 42 gallons of water stored in quart , half - gallon , and one gallon jars . she has equal numbers of each size jar holding the liquid . what is the total number of water filled jars ? | let the number of each size of jar = wthen 1 / 4 w + 1 / 2 w + w = 42 1 3 / 4 w = 42 w = 24 the total number of jars = 3 w = 72 answer : d | a = 1 / 2
b = const_0_25 + a
c = 1 + b
d = 42 / c
e = d * 3
|
a ) 25 / 6 , b ) 5 5 / 7 , c ) 5 5 / 2 , d ) 5 5 / 8 , e ) 5 5 / 1 | a | multiply(divide(subtract(divide(7, 6), const_1), 4), const_100) | a sum of money becomes 7 / 6 of itself in 4 years at a certain rate of simple interest . the rate per annum is ? | let sum = x . then , amount = 7 x / 6 s . i . = 7 x / 6 - x = x / 6 ; time = 4 years . rate = ( 100 * x ) / ( x * 6 * 4 ) = 25 / 6 % . answer : a | a = 7 / 6
b = a - 1
c = b / 4
d = c * 100
|
a ) 216 , b ) 82 , c ) 80 , d ) 45 , e ) 36 | a | multiply(multiply(3, subtract(const_10, const_1)), subtract(const_10, const_2)) | of the 3 - digit integers greater than 700 , how many have distinct digits ? | three digit number can have only following 3 patterns : a . all digits are distinct ; b . two digits are alike and third is different ; c . all three digits are alike . we need to calculate b . b = total - a - c total numbers from 700 to 999 = 299 ( 3 - digit numbers greater than 700 ) ; a . all digits are distinct = 3... | a = 10 - 1
b = 3 * a
c = 10 - 2
d = b * c
|
a ) 3 , b ) 5 1 / 2 , c ) 6 , d ) 8 , e ) none of these | a | divide(multiply(multiply(divide(const_1, 15), 10), 9), const_2) | a can finish a work in 9 days and b can do the same work in 15 days . b worked for 10 days and left the job . in how many days , a alone can finish the remaining work ? | "b ' s 10 day ' s work = ( 1 / 15 * 10 ) = 2 / 3 remaining work = ( 1 - 2 / 3 ) = 1 / 3 now , 1 / 18 work is done by a in 1 day 1 / 3 work is done by a in ( 9 * 1 / 3 ) = 3 days . correct option : a" | a = 1 / 15
b = a * 10
c = b * 9
d = c / 2
|
a ) 7744 , b ) 8844 , c ) 5544 , d ) 4444 , e ) 3444 | a | power(divide(circumface(56), const_4), const_2) | a wire can be bent in the form of a circle of radius 56 cm . if it is bent in the form of a square , then its area will be | "length of wire = 2 pier = 2 * ( 22 / 7 ) * 56 = 352 cm side of the square = 352 / 4 = 88 cm area of the square = 88 * 88 = 7744 sq cm answer : a" | a = circumface / (
b = a ** 4
|
a ) 2 : 5 , b ) 1 : 4 , c ) 3 : 7 , d ) 5 : 3 , e ) 2 : 3 | d | divide(divide(const_1, const_4), divide(40, const_100)) | if 40 % of a number is equal to two - third of another number , what is the ratio of first number to the second number ? | "let 40 % of a = 2 / 3 b then 40 a / 100 = 2 b / 3 2 a / 5 = 2 b / 3 a / b = 5 / 3 a : b = 5 : 3 answer is d" | a = 1 / 4
b = 40 / 100
c = a / b
|
a ) a ) 657 , b ) b ) 280 , c ) c ) 225 , d ) d ) 289 , e ) e ) 427 | c | divide(multiply(480, add(const_100, 25)), add(subtract(const_100, 15), add(const_100, 25))) | i bought two books ; for rs . 480 . i sold one at a loss of 15 % and other at a loss of 25 % and then i found each book was sold at the same price . find the cost of the book sold at a lower loss ? | "x * ( 85 / 100 ) = ( 480 - x ) 75 / 100 x = 225 answer : c" | a = 100 + 25
b = 480 * a
c = 100 - 15
d = 100 + 25
e = c + d
f = b / e
|
a ) 0 , b ) 1 , c ) 2 , d ) 3 , e ) 4 | a | floor(divide(reminder(power(7, reminder(1213, add(const_4, const_1))), const_100), const_10)) | what is the tens digit of 7 ^ 1213 ? | "7 ^ 1 = 7 7 ^ 2 = 49 7 ^ 3 = 343 7 ^ 4 = 2401 7 ^ 5 = 16807 7 ^ 6 = 117649 we should see this as pattern recognition . we have a cycle of 4 . ( we can multiply the last 2 digits only as we care about ten ' s digit ) 0 , 4 , 4 , 0 . 1213 = 4 * 304 + 1 the ten ' s digit will be 0 . answer a" | a = 4 + 1
b = 7 ** reminder
c = reminder / (
d = math.floor(c, 100)
|
a ) 47.6 kg , b ) 52.6 kg , c ) 59.6 kg , d ) 56.6 kg , e ) 57.6 kg | e | multiply(multiply(divide(divide(48, 5), 4), 9), 2) | if 5 workers collect 48 kg of cotton in 4 days , how many kg of cotton will 9 workers collect in 2 days ? | "( 3 * 5 ) / 48 = ( 9 * 2 ) / x x = 57.6 kg answer : e" | a = 48 / 5
b = a / 4
c = b * 9
d = c * 2
|
a ) 0 . , b ) 6 . , c ) 8 . , d ) 10 . , e ) 12 . | a | min(divide(78, const_3), divide(78, 6)) | in the third grade of windblown school there are 78 students , one third of them failed the math test and 1 / 6 failed that literature test . at least how many students failed both tests ? | total = 78 failed in math = 78 / 3 = 26 failed in literature = 78 / 6 = 13 the least failed in both can be 0 while max can be 13 answer a | a = 78 / 3
b = 78 / 6
c = min(a)
|
a ) $ 200 , b ) $ 400 , c ) $ 600 , d ) $ 800 , e ) $ 1,200 | d | subtract(divide(add(add(multiply(const_100, const_10), 800), 800), const_2), 800) | david has $ 2,400 at the beginning of his trip , after spending money , he still has exactly $ 800 less than he spent on the trip . how much money does john still have ? | "suppose total money spent = x not spend ( money he still has ) = x - 800 x + x - 800 = 2400 x = 1600 money not spend = 1600 - 800 = 800 answer : d" | a = 100 * 10
b = a + 800
c = b + 800
d = c / 2
e = d - 800
|
a ) 153.75 , b ) 37.78 , c ) 246.0 , d ) 27.88 , e ) 127.71 | a | divide(61.50, divide(const_4, 5)) | a money lender finds that due to a fall in the annual rate of interest from 8 % to 7 3 / 5 % his yearly income diminishes by rs . 61.50 . his capital is | "explanation : capital = rs . x , then 2 / 5 x = 153.75 answer : a ) rs . 153.75" | a = 4 / 5
b = 61 / 50
|
a ) 17.1 , b ) 17.3 , c ) 17.5 , d ) 17.7 , e ) 17.2 | b | divide(173, divide(14.5, 1.45)) | if 2994 ã · 14.5 = 173 , then 29.94 ã · 1.45 = ? | "29.94 / 1.45 = 299.4 / 14.5 = ( 2994 / 14.5 ) x 1 / 10 ) [ here , substitute 173 in the place of 2994 / 14.5 ] = 173 / 10 = 17.3 answer is b ." | a = 14 / 5
b = 173 / a
|
a ) 10 , b ) 14 , c ) 20 , d ) 15 , e ) 32 | b | subtract(add(divide(multiply(2, 16), subtract(6, const_1)), 6), 2) | the ages of 2 persons differ by 16 years . if 6 years ago the elder one be 3 times as old as the younger one , find the present age of younger person . | "age of the younger person = x age of the elder person = x + 16 3 ( x - 6 ) = x + 16 - 6 x = 14 answer is b" | a = 2 * 16
b = 6 - 1
c = a / b
d = c + 6
e = d - 2
|
a ) 28 , b ) 32 , c ) 36 , d ) 42 , e ) 46.8 | e | add(multiply(multiply(4, 6), const_100), multiply(5, 6)) | three numbers are in the ratio 4 : 5 : 6 and their average is 39 . the largest number is : | "explanation : let the numbers be 4 x , 5 x and 6 x . therefore , ( 4 x + 5 x + 6 x ) / 3 = 39 15 x = 117 x = 7.8 largest number = 6 x = 46.8 . answer e" | a = 4 * 6
b = a * 100
c = 5 * 6
d = b + c
|
a ) 6.25 , b ) 6.22 , c ) 6.29 , d ) 5.75 , e ) 6.13 | d | divide(subtract(262, multiply(10, 3.2)), 40) | in the first 10 overs of a cricket game , the run rate was only 3.2 . what should be the rate in the remaining 40 overs to reach the target of 262 runs ? | "required run rate = [ 262 - ( 3.2 * 10 ) ] / 40 = 230 / 40 = 5.75 answer : d" | a = 10 * 3
b = 262 - a
c = b / 40
|
a ) 1 / 15 , b ) 1 / 16 , c ) 1 / 20 , d ) 1 / 10 , e ) 1 / 12 | c | subtract(add(divide(const_1, 18), divide(const_1, 60)), divide(const_1, 45)) | two pipes can fill a tank in 18 minutes and 60 minutes . an outlet pipe can empty the tank in 45 minutes . if all the pipes are opened when the tank is empty , then how many minutes will it take to fill the tank ? | "part of the filled by all the three pipes in one minute = 1 / 18 + 1 / 60 - 1 / 45 = 1 / 20 so , the tank becomes full in 20 minutes . answer : c" | a = 1 / 18
b = 1 / 60
c = a + b
d = 1 / 45
e = c - d
|
a ) 240 , b ) 246 , c ) 252 , d ) 292 , e ) 298 | d | multiply(multiply(multiply(400, subtract(1, divide(1, 10))), subtract(1, divide(1, 10))), subtract(1, divide(1, 10))) | in a certain animal population , for each of the first 3 months of life , the probability that an animal will die during that month is 1 / 10 . for a group of 400 newborn members of the population , approximately how many would be expected to survive the first 3 months of life ? | "number of newborns that can die in first month = 1 / 10 * 400 = 40 survived = 360 number of newborns that can die in second month = 1 / 10 * 360 = 36 survived = 324 number of newborns that can die in third month = 1 / 10 * 324 = 32 survived = 292 answer : d" | a = 1 / 10
b = 1 - a
c = 400 * b
d = 1 / 10
e = 1 - d
f = c * e
g = 1 / 10
h = 1 - g
i = f * h
|
a ) 73 , b ) 32 , c ) 34 , d ) 43 , e ) 80 | e | sqrt(divide(multiply(square_area(8), 50), inverse(const_2))) | the length of the rectangular field is double its width . inside the field there is square shaped pond 8 m long . if the area of the pond is 1 / 50 of the area of the field . what is the length of the field ? | "explanation : a / 50 = 8 * 8 = > a = 8 * 8 * 50 x * 2 x = 8 * 8 * 50 x = 40 = > 2 x = 80 answer : option e" | a = square_area * (
b = a / 50
c = 1/(2)
d = math.sqrt(b)
|
a ) 60 min , b ) 36 min , c ) 25 min , d ) 30 min , e ) 50 min | a | divide(40, divide(2, 3)) | a fill pipe can fill 2 / 3 of cistern in 40 minutes in how many minutes , it can fill full of the cistern ? | 2 / 3 of the cistern can fill in 40 min 3 / 3 of the cistern can fill in = 40 * 3 / 2 * 3 / 3 = 60 min answer is a | a = 2 / 3
b = 40 / a
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.