-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnumbers.json
710 lines (710 loc) · 43.2 KB
/
numbers.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
{
"formula": "FINDING THE NUMBER OF FACTORS:\nExpress the number as the product of primes.\n\nn = (a^x)(b^y)(c^z)\na,b,c are prime numbers\nthe number of factors of n is (x+1)(y+1)(z+1)\n\nFor a number to be divisible by two numbers x and y, it should be divisible by the L.C.M of x and y.\n\nPERFECT NUMBER:\nA number equal to the sum of its positive divisors is a perfect number.\nExample: 6,28\n\nNATURAL NUMBERS:\n1,2,3,4,.....\n\nWHOLE NUMBERS:\n0,1,2,,3,4,...",
"problems": [
{
"id": 1,
"answerIndex": 2,
"answers": ["69", "23", "46", "86"],
"question": "The square of a two digit number is divided by half the number. After 36 is added to the quotient, this sum is then divided by 2. The digits of the resulting number are the same as those in the original number, but they are in reverse order. The ten's place of the original number is equal to twice the difference between its digits. What is the number?",
"solution": "Trial and error method is the quickest way to solve this."
},
{
"id": 2,
"answerIndex": 0,
"answers": ["23", "33", "13", "3"],
"question": "The least number which should be added to 2497 so that the sum is exactly divisible by 5, 6, 4 and 3 is",
"solution": "L.C.M of 3,4,5 and 6 is 60\n\n2520 is divisible by 60. \n\nHence, 23 should be added"
},
{
"id": 3,
"answerIndex": 1,
"answers": ["1000", "980", "270", "230"],
"question": "Divide 100 by half, then multiply it with 5 and subtract 20. What is the result?",
"solution": "100:(1/2) = 100*2 =200\n\n(200*5)-20 = 980"
},
{
"id": 4,
"answerIndex": 0,
"answers": ["3600", "400", "14400", "17280"],
"question": "The least perfect square number which divides 20, 15 and 24 is",
"solution": "L.C.M of 20, 15 and 24 is 120.\n\n120 is divisible by 3600."
},
{
"id": 5,
"answerIndex": 2,
"answers": ["214", "284", "428", "842"],
"question": "In a three digit number, the first digit is twice the second digit and half of the third digit. The sum of the digits is 14. Find the number.",
"solution": "Based on the first statement, \nthe number can be 214 and 428.\nBased on the second statement, \nwe eliminate 214."
},
{
"id": 6,
"answerIndex": 0,
"answers": ["59", "49", "29", "19"],
"question": "A number when divided by 6 leaves a remainder of 5, when divided by 5 leaves a remainder of 4, when divided by 4 leaves a remainder of 3, when divided by 3 leaves a remainder of 2 and when divided by 2 leaves a remainder of 1. Find the number.",
"solution": "On adding 1, the number should be divisible by 6, 5, 4, 3 and 2.\n\nL.C.M of these numbers is 60.\n\nHence, the answer is 59."
},
{
"id": 7,
"answerIndex": 2,
"answers": [
"(i) and (ii) only",
"(ii) and (iii) only",
"(i) and (iii) only",
"(i) only"
],
"question": "Which of the following numbers is divisible by 6?\n(i) 5647386\n(ii) 8460398\n(iii) 2385972",
"solution": "For a number to be divisible by 6,\nIt should be even.\nThe sum of its digits should be divisible by 3."
},
{
"id": 8,
"answerIndex": 3,
"answers": ["35, 25, 5", "25, 15, 4", "25, 15, 5", "30, 20, 5"],
"question": "Divide 55 into three parts such that when 5 is subtracted from the first part, 5 is added to the second part and 5 is multiplied by the third part, all end up in the same result.",
"solution": "x+y+z=55\nx-5 = y+5 = 5z\n\nSolving this, x=30, y=20, z=5\n\nTrial and error method can also be used."
},
{
"id": 9,
"answerIndex": 3,
"answers": ["132", "135", "138", "144"],
"question": "A multiple of 19 is divided by 3, added with 15 and multiplied by 2. Which of the following numbers could have been the result?",
"solution": "\n3*((x/2) - 15) is a multiple of 19.\n\nSubstitute x with the choices and check whether the result is a multiple of 19."
},
{
"id": 10,
"answerIndex": 1,
"answers": ["80,10", "75,15", "60,30", "50,40"],
"question": "Divide 90 into two parts such that the sum of their reciprocals is 2/25.",
"solution": "(1/x)+(1/(90-x)) = (2/25)\n\nSolving, x= 75 or 15"
},
{
"id": 11,
"answerIndex": 2,
"answers": ["24, 12, 8", "36, 18, 6", "30, 15, 5", "18, 12, 20"],
"question": "Divide 50 into three parts such that the first part is twice the second part and the second part is thrice the third part.",
"solution": "x+y+z = 50\nx = 2y\ny = 3z\n\nSolving, x=30, y=15, z=5"
},
{
"id": 12,
"answerIndex": 3,
"answers": ["126", "247", "368", "489"],
"question": "A three digit number is such that the second digit is twice the first digit and sum of the digits is 21. The first and third digits differ by 5. Find the number.",
"solution": "Let the number be xyz.\n\ny=2x\nx+y+z=21\nz-x=5\n\nBy substituting the options, the answer is 489"
},
{
"id": 13,
"answerIndex": 2,
"answers": ["6", "10", "12", "15"],
"question": "Find the number of factors of 60.",
"solution": "60 = (2^2) *(3^1) * (5^1)\n\nHence, the no. of factors = 3*2*2 = 12"
},
{
"id": 14,
"answerIndex": 0,
"answers": ["6", "5", "4", "7"],
"question": "How many of these numbers are divided by 11?\n156,275,187,373,671,947,1045,594,321,819,1232",
"solution": "275,187,671,1045,594,1232 are divisible by 11."
},
{
"id": 15,
"answerIndex": 3,
"answers": ["123", "98", "156", "132"],
"question": "P and Q are two-digit positive integers having the same digits, but in reverse order. Which of the following is a possible value of their sum?",
"solution": "If P = 10x+y,\nQ = 10y+x\nP+Q = 11x+11y = 11(x+y)\n\nThe sum should be divisible by 11.\n\nOnly 132 is divisible by 11.\n"
},
{
"id": 16,
"answerIndex": 0,
"answers": ["a>b", "a<b", "a=b", "a≤b"],
"question": "If a and b are positive integers and (a-b)/5.5=2/11, then",
"solution": "(a-b)/5.5 = 2/11 = 1/5.5\n\na-b = 1\n\na = b+1\n\na>b"
},
{
"id": 17,
"answerIndex": 0,
"answers": ["20", "25", "52", "16"],
"question": "The product of two positive integers is 100. The minimum value of their sum is ",
"solution": "100 can be expressed as \n100*1\n50*2\n25*4\n20*5\n10*10\nThe minimum value of their sum is 10+10 = 20"
},
{
"id": 18,
"answerIndex": 0,
"answers": ["942", "700", "950", "853"],
"question": "The total number of digits used in numbering the pages of a book having 350 pages is ",
"solution": "Numbers 1-9 have 1 digit.\nNumbers 10-99 have 2 digits.\nNumbers 100-350 have 3 digits.\n\n(9*1)+(90*2)+(251*3)=942"
},
{
"id": 19,
"answerIndex": 1,
"answers": ["22.5", "24", "30", "25"],
"question": "The sum of the squares of 3 numbers is 276. The sum of their products taken two at a time is 150. Find their sum.",
"solution": "Let the three numbers be a, b and c.\n\na²+b²+c²=276 \nab+bc+ca=150\n\n(a+b+c)² \n= a²+b²+c²+2(ab+bc+ca)\n= 276+2*150\n= 576\n\n(a+b+c) = √576 = 24"
},
{
"id": 20,
"answerIndex": 3,
"answers": ["p-2", "p", "p+2", "p+4"],
"question": "The product of two positive numbers is p. If each of the numbers is increased by 2, the new product is how much greater than twice the sum of the two original numbers?",
"solution": "Let the two numbers be x and y.\n\nxy = p\n\n(x+2)(y+2)\n= xy+2(x+y)+4\n= p+4+2(x+y)\n\nThe product is p+4 more than twice the sum of the original numbers.\n"
},
{
"id": 21,
"answerIndex": 3,
"answers": ["x²", "x³", "3x+4", "5x+7"],
"question": "If x is an odd integer, the even integer among the following is",
"solution": "If x is odd,\nx² and x³ will also be odd.\n\n3x will be odd. So, 3x+4 will also be odd.\nodd+even = odd\n\n5x will be odd. So 5x+7 will be even\nodd+odd = even"
},
{
"id": 22,
"answerIndex": 2,
"answers": ["120", "125", "119", "113"],
"question": "A printer numbered the pages of a book consecutively, starting with 1 on the first page. He had to print a total of 250 digits. Find the number of pages in the book.",
"solution": "Numbers 1 to 9 have 1 digit each.\n10*1 = 10\n\nNumbers 10 to 99 have 2 digits each.\n90*2=180\n\nNumber of digits printed upto 99 pages\n= 190\n \n250-190 = 60 = 20*3\n\n20 three-digit numbers have been printed.\n\n100 to 119 \nThe book contains 119 pages."
},
{
"id": 23,
"answerIndex": 1,
"answers": ["2/7", "2/5", "3/5", "1/3"],
"question": "The product of two fractions is 2/15 and their quotient is 5/6. The greater fraction is",
"solution": "Let the fractions be x=a/b and y=c/d\n\nxy = 2/15\n\nx:y = 5/6\n\nx =(2/15):y = (5/6)*y\n\ny² = (2/15):(5/6) \n = 12/75\n = 4/25\ny = 2/5\n\nx= (5/6)y\n= 5/6*2/5 \n= 1/3 \n\nTo find which is greater, take LCM\nx=5/15 \ny=6/15\ny>x"
},
{
"id": 24,
"answerIndex": 0,
"answers": ["78", "35", "52", "64"],
"question": "Which of the following could be the sum of three consecutive integers?",
"solution": "Let the three consecutive integers be x, x+1, x+2\nSum = x+x+1+x+2\n = 3x+3\n = 3(x+1)\nThe sum of three consecutive integers should be divisible by 3.\n\nAmong the given options,\nonly 78 is divisible by 3."
},
{
"id": 25,
"answerIndex": 3,
"answers": ["96", "90", "100", "99"],
"question": "If the sum of three consecutive integers is 30, find the product of the largest and smallest of these integers.",
"solution": "Divide the sum by 3 to get the middle number.\n\nThe 3 integers are 9,10,11.\n\n9*11 = 99"
},
{
"id": 26,
"answerIndex": 2,
"answers": ["13", "7", "5", "3"],
"question": "Four prime numbers are written in ascending order. The product of the first 3 numbers is 105. The product of the last 3 is 385. Find the second number.",
"solution": "Let the numbers be a,b,c and d.\nabc=105\nbcd=385\nHCF(abc,bcd) = bc\nsince a and d are prime.\nHCF(105,385)\n= 35\n= 5*7\nThe second number is 5.\n"
},
{
"id": 27,
"answerIndex": 1,
"answers": ["10", "8", "5", "3"],
"question": "Find the smallest number that must be added to 490273 to obtain a multiple of 11.",
"solution": "490273 divided by 11\ngives a remainder of 3\n11-3=8 must be added to make it divisible by 11."
},
{
"id": 28,
"answerIndex": 1,
"answers": ["34", "26", "28", "36"],
"question": "Eight apples are taken from a basket containing two more than four times as many apples. How many are left in the basket?",
"solution": "Total no. of apples\n= 2+4*(8)\n= 34\nNo. of apples left\n= 34-8\n= 26"
},
{
"id": 29,
"answerIndex": 2,
"answers": ["28", "41", "82", "64"],
"question": "The tens digit is four times the ones digit in a certain number. If the sum of the digits is 10, what is the number?",
"solution": "Let the number be 10x+y\nTen's digit - x\nOne's digit - y\nx=4y\nx+y=10\nSolving, y=2\nx=8\nThe number is 82"
},
{
"id": 30,
"answerIndex": 0,
"answers": ["2/3", "3/2", "4/9", "3/5"],
"question": "Divide 4½ by 6¾.",
"solution": "4½ = 9/2\n6¾ = 27/4\n\n(9/2)/(27/4)\n= 2/3"
},
{
"id": 31,
"answerIndex": 0,
"answers": ["35", "42", "49", "57"],
"question": "Ray writes a two digit number. He sees that the number exceeds 4 times the sum of its digits by 3. If the number is increased by 18, the result is the same as the number formed by reversing the digits. Find the number.",
"solution": "Let the two digit number be xy.\n4(x+y) +3 = 10x+y ---(I)\n10x+y + 18 = 10y+x ---(II)\n\nSolving (I),\n2x - y = 1\nSolving (II),\ny - x = 2\n\nSolving the equations,\nx=3, y=5\nThe number is 35."
},
{
"id": 32,
"answerIndex": 3,
"answers": [">15", "≤14", "13", "12"],
"question": "a, b, c are non negative integers such that 28a+30b+31c = 365.\na + b + c = ?",
"solution": "In a calendar,\nNo. of months having 28 days = 1\nNo. of months having 30 days = 4\nNo. of months having 31 days = 7\n\nHence, a = 1, b = 4, c = 7.\n\na+b+c = 12"
},
{
"id": 33,
"answerIndex": 0,
"answers": ["Rs.2", "Rs.6", "Rs.8", "Rs.10"],
"question": "If a lemon and apple together cost Rs.12, a tomato and a lemon cost Rs.4 and an apple costs Rs.8 more than a lemon,what is the cost of a lemon?",
"solution": "l+a=12 --(I)\nt+l=4 --(II)\na=8+l --(III)\n\nSubstituting (III) in (I),\nl+8+l=12\n2l=4\nl=2"
},
{
"id": 34,
"answerIndex": 0,
"answers": ["37", "39", "35", "36"],
"question": "3 mangoes and 4 apples cost Rs.85. 5 apples and 6 peaches cost Rs.122. 6 mangoes and 2 peaches cost Rs.114. What is the combined price of 1 apple, 1 peach and 1 mango?",
"solution": "3m+4a=85 ----(I)\n5a +6p=122 ----(II)\n6m+2p=114 ----(III)\n\n(I)*2\n\n6m+8a=170 ----(IV)\n\n(IV) - (III)\n\n8a-2p=56 ----(V)\n\n(V)*3 -> 24a-6p=168\n(II) -> 5a+6p=122\n\nSolving,\n\n29a=290\na=10\np=12\nm=15\na+p+m=37"
},
{
"id": 35,
"answerIndex": 3,
"answers": ["4", "5", "6", "7"],
"question": "Addition of 641 + 852 + 973 = 2456 is incorrect. What is the largest digit that can be changed to make the addition correct?",
"solution": " 641\n 852\n 973\n_____\n2466\n\nAny of the digits in the tens place has to be changed. The largest is 7. (973).\nIf it is replaced by 6 (963), the addition becomes correct and equal to 2456."
},
{
"id": 36,
"answerIndex": 3,
"answers": ["3,4", "2,3", "2,23", "1,45"],
"question": "(x^y)+(y^x)=46\n\nFind the values of x and y.",
"solution": "(1^45)+(45^1)=46\n\nx,y = 1,45"
},
{
"id": 37,
"answerIndex": 1,
"answers": ["10,40", "20,30", "15,35", "24,26"],
"question": "The sum of two numbers is 50 and the sum of their reciprocals is 1/12. Find these two numbers.",
"solution": "Let the numbers be x and y.\n\nx+y=50\n\n(1/x)+(1/y) = (1/12)\n\n12(x+y) = xy\n\n12*50 = (50-y)*y\n\ny²-50y+600=0\n(y-20)(y-30)=0\ny=20 or 30.\nIf y=20, x=30 and vice-versa.\nHence, the numbers are 20 and 30."
},
{
"id": 38,
"answerIndex": 1,
"answers": ["944", "863", "782", "836"],
"question": "The sum of the three digits of a number is 17.The sum of square of the digits is 109. If we substract 495 from the number, the number is reversed. Find the number.",
"solution": "Let the number be xyz.\n\nx+y+z=17 ----(I)\n\nx²+y²+z²=109 -- (II)\n\n100x+10y+z - 495=100z+10y+x\n\nThe above equation simplifies to\nx-z=5 --- (III)\n\nBased on (I), and (III), the possible values for (x,y,z) are \n(9, 4, 4), (8,6,3), (7,8,2)\n\nOnly (8,6,3) satisfies (II).\n\nThe number is 863."
},
{
"id": 39,
"answerIndex": 3,
"answers": ["47", "38", "29", "56"],
"question": "Find the two digit number which when substracted from the number formed by reversing its digits as well as when added to the number formed by reversing its digits, result in a perfect square.",
"solution": "It is better to start from the options.\n\n56+65 = 121\n65-56 = 9"
},
{
"id": 40,
"answerIndex": 2,
"answers": ["6", "8", "9", "10"],
"question": "Kate wanted to buy 2 kgs of apples. The vendor kept the 2 kg weight on the right side and weighed 4 apples for that. She doubted the correctness of the balance and placed 2 kg weight on the left side and she could weigh 14 apples for 2 kgs. If the balance was correct, how many apples would she have got?",
"solution": "The left side has an extra weight of x kgs attached to it.\n\nLet the weight of an apple be a kgs.\n\n4a+x = 2\n\n14a = 2+x\n\nSolving the two equations,\n18a = 4\n9a = 2\n\nHence, for 2 kgs, she would have got 9 apples."
},
{
"id": 41,
"answerIndex": 1,
"answers": ["18 kg", "24 kg", "32 kg", "36 kg"],
"question": "There are several bags of same weight.A bag is 6 kgs plus three fourth of the weight of another bag. What is the weight of a bag?",
"solution": "Let the weight of the bags be x kg.\n\n6+ (3/4)x = x\n\nx/4 = 6\n\nx = 24"
},
{
"id": 42,
"answerIndex": 1,
"answers": ["1", "2", "3", "4"],
"question": "In the equation \nA + B + C + D + E = FG\nFG is the two digit number whose value is 10F + G and letters A, B , C , D , E, F and G each represent different digits. If FG is as large as possible, what is the value of G?",
"solution": "FG is as large as possible and all the 7 numbers should be different.\n\nBy trial and Error method, \n\n9 + 8 + 7 + 6 + 5 = 35\n5 is repeated\n9 + 8 + 7 + 6 + 4 = 34\n4 is repeated\n9 + 8 + 7 + 5 + 4 = 33\n3 is repeated\n9 + 8 + 6 + 5 + 4 = 32\nNo number is repeated. Hence, 32 is the largest value FG can take.\nG=2."
},
{
"id": 43,
"answerIndex": 0,
"answers": ["43,59", "49,53", "39,43", "34,49"],
"question": "Of two numbers, 4 times the smaller one is less than 3 times the larger one by 5. If the sum of the numbers is larger than 6 times their difference by 6, find the two numbers.",
"solution": "Let the larger number be x and\nthe smaller number be y.\n\n3x-4y=5\n\nx+y - 6(x-y)=6\n-5x+7y=6\n\nSolving the two equations,\ny=43, x=59"
},
{
"id": 44,
"answerIndex": 2,
"answers": ["5, 13", "5, 10", "6, 10", "6, 13"],
"question": "A boy buys 18 sharpeners, (brown/white) for Rs.100.For every white sharpener, he pays one rupee more than the brown sharpener. What is the cost of white sharpener and how much did he buy?",
"solution": "Let the no. of brown sharpeners he bought be b and\nthe no. of white sharpeners he bought be w and\nthe cost of a brown sharpener be Rs.x and\nthe cost of a white sharpener be Rs.(x+1)\n\nb+w = 18\nb = 18-w\n\n(b*x)+[(w*(x+1)] = 100\n(18-w)x + xw + w = 100\n18x+w=100\n\nSubstitute the options in the above equation.\n\nOnly option 3 satisfies the equation.\n\nx+1=6, w=10\n\n10+(18*5) = 100"
},
{
"id": 45,
"answerIndex": 1,
"answers": ["4,3,2", "1,0,4", "2,1,3", "4,1,2"],
"question": "A number when successively divided by 5, 3, 2 gives remainder 0, 2, 1 respectively in that order. What will be the remainder when the same number is divided successively by 2, 3, 5 in that order?",
"solution": "Let the number be n.\n\nn = 5a\n\na = 3b+2\n\nb = 2c+1\n\na=3(2c+1)+2 = 6c+5\n\nn=5*(6c+5) = 30c+25\n\nFor c=0, n=25.\n\nWhen 25 is divided by 2,\nquotient=12\nremainder=1\nWhen 12 is divided by 3,\nQ = 4\nR = 0\nWhen 4 is divided by 5,\nQ = 0\nR = 4\n(1,0,4)"
},
{
"id": 46,
"answerIndex": 1,
"answers": ["45", "34", "25", "20"],
"question": "How many positive integers less than 500 can be formed using the numbers 1,2,3,and 5 for digits, each digit being used only once?",
"solution": "Single digit numbers - 4\n1, 2, 3, 5\n\n2 digit numbers \nOne of the four can occupy the tens place and the one of the remaining three can occupy the units place.\n4*3 = 12\n\n3 digit numbers\n\nThe number should be < 500.\nHence, only 1, 2 or 3 can occupy the hundreds place.\n3*3*2=18\n\nNo. of integers\n= 34"
},
{
"id": 47,
"answerIndex": 3,
"answers": ["120", "260", "210", "240"],
"question": "In the simple subtraction problem below some single digits are replaced by letters. Find the value of 7A+5D+6CD.\n\n A5C5\n- 1B87\n _____\n 674D",
"solution": "15-7 = 8\nD = 8\n\n10+(C-1)-8 = 4\nC = 3\n\n10+4-B=7\nB = 7\n(A-1)-1 = 6\nA = 8\n\n7A+5D+6CD\n= 56+40+144\n= 240"
},
{
"id": 48,
"answerIndex": 0,
"answers": ["1200 liters", "1000 liters", "700 liters", "1400 liters"],
"question": "Two full tanks, one shaped like a cylinder and the other like a cone, contain liquid fuel. The cylindrical tank holds 500 lts more then the conical tank. After 200 lts of fuel is pumped out from each tank, the cylindrical tank now contains twice the amount of fuel in the conical tank. How many liters of fuel did the cylindrical tank have when it was full?",
"solution": "Let the initial amount of fuel in the conical tank be x liters and\nthat in the cylindrical tank be (x+500) liters.\n\n(x+500)-200 = 2(x-200)\n\nx+300 = 2x-400\n\nx=700\n\nAmount of fuel in the Cylindrical tank\n= 1200 liters"
},
{
"id": 49,
"answerIndex": 3,
"answers": ["17", "49", "64", "97"],
"question": "A shop sells chocolates. It used to sell chocolates for Rs.2 each but there were no sales at that price. When it reduced the price, all the chocolates sold out enabling the shopkeeper to realize Rs 164.90 from the chocolates alone. If the new price was not less than half the original price quoted, how many chocolates were sold?",
"solution": "Factorise 16490\n\n16490 = 2*5*17*97\n = 170*97\nThe price of a chocolate should be greater than 1 and less than 2.\n\n164.90 = 1.7*97\n\nChocolate price = Rs.1.7\n\n97 chocolates were sold."
},
{
"id": 50,
"answerIndex": 2,
"answers": ["600", "800", "1000", "1200"],
"question": "In a park, entry fee is Rs.1. There are 3 rides, the entry for each costs Rs.1. The total number of boys entering are 3000. Total income for the day is Rs.7200. 800 students go for all 3 rides. 1400 go for atleast 2 rides. No one goes for the same ride twice. The number of students who do not go for any ride is",
"solution": "Amount collected through entry fees\n= 3000\nAmount collected through rides\n= 7200-3000\n= 4200\n800 students went for all three rides. Hence, they paid 800*3 = 2400\n\nNo. of students who went for only two rides\n= 1400-800\n= 600\nThey paid 600*2 = 1200\n\nRemaining amount\n= 4200-(2400+1200)\n= 600\n\n600 students would have gone for only one ride.\n\nNo. of students who didn't go for any ride\n= 3000-(800+600+600)\n= 1000"
},
{
"id": 51,
"answerIndex": 0,
"answers": ["1", "2", "3", "4"],
"question": "A two digit number is 18 less than the square of the sum of its digits. How many such numbers are there?",
"solution": "Let the number be 10a+b.\n\n10a+b = (a+b)² - 18\n10a+b+18 = (a+b)²\nFor a = 1 to 9,\n10a+b+18 will be\n28+b, 38+b,....,98+b,108+b.\nThese should be equal to perfect squares.\nb can also take values only from 1 to 9.\nBy trial and error, 63 is the only such number possible."
},
{
"id": 52,
"answerIndex": 0,
"answers": ["45", "54", "60", "50"],
"question": "A property was originally on a 99 years lease and two thirds of the time passed is equal to the four fifth of the time to come. How many years are there to go?",
"solution": "Let the time passed be x years.\n\n(2/3)x = (4/5)*(99-x)\n\n10x = 1188-12x\n\n22x=1188\nx=54\n\nTime left = 99-54 = 45 years"
},
{
"id": 53,
"answerIndex": 0,
"answers": ["10", "11", "12", "13"],
"question": "On a 26 question test, 5 points were deducted for each wrong answer and 8 points were added for right answers. If Ram answered all the questions, how many were correct if his score was zero?",
"solution": "Let x be the number of correct answers.\n\n8x = 5(26-x)\n\n13x=130\n\nx=10"
},
{
"id": 54,
"answerIndex": 2,
"answers": ["9", "10", "19", "20"],
"question": "If all the numbers between 11 and 100 are written on a piece of paper, how many times will the number 4 be written?",
"solution": "From 11 to 99,\n4 occurs 9 times in the units place and 10 times in the tens place.\n\nTotal no. of times 4 occurs\n= 19"
},
{
"id": 55,
"answerIndex": 0,
"answers": ["52", "45", "10", "26"],
"question": "2ab5 is a four digit number divisible by 25. If a number formed from the two digits ab is a multiple of 13, then ab is",
"solution": "For a number to be divisible by 25, the last two digits should be either 00, 25, 50 or 75.\n\n2ab5 is divisible by 25. Hence, b should be either 2 or 7.\n\nab should be a multiple of 13.\n\nIn the given options, only 52 satisfies that condition."
},
{
"id": 56,
"answerIndex": 0,
"answers": ["24", "40", "16", "20"],
"question": "What are the total number of divisors of 600 (including 1 and 600)?",
"solution": "Express the number as the product of primes.\n\nn = (a^x)(b^y)(c^z)\na,b,c are prime numbers\nthe number of factors of n is (x+1)(y+1)(z+1)\n\n600 = (2^3)*3*(5^2)\n\nNo. of factors\n= 4*2*3\n= 24"
},
{
"id": 57,
"answerIndex": 0,
"answers": ["2870", "2000", "5650", "44100"],
"question": "What is the sum of the squares of the first 20 natural numbers?",
"solution": "Sum of the squares of first n natural numbers\n= n(n+1)(2n+1)/6\n\n20*21*41/6 = 2870"
},
{
"id": 58,
"answerIndex": 0,
"answers": ["18 minutes", "610 minutes", "206 minutes", "34 minutes"],
"question": "A call center agent has a list of 305 phone numbers of people in alphabetical order of names (but she does not have any of the names). She needs to quickly contact Deepak Sharma to convey a message to him.If each call takes 2 minutes to complete, and every call is answered, what is the minimum amount of time in which she can guarantee to deliver the message to Mr Sharma?",
"solution": "She first divides the list into 2 (153 & 152).\n\nShe calls the last name in the first list. After checking the name, she can decide whether Deepak Sharma's name will be in the first list or second list.\n\nShe then divides that list into 2 (76 & 77) and repeats the same procedure.\n\n305 -> 153\n153 -> 76\n76 -> 38\n39 -> 19\n19 -> 10\n10 -> 5\n5 -> 3\n3 -> 2\n2 -> 1\n\nShe can finish it in 9 phone calls. Since each call takes 2 minutes, she takes 18 minutes."
},
{
"id": 59,
"answerIndex": 0,
"answers": ["7", "10", "15", "18"],
"question": "Of the 38 people in my office, 10 like to drink chocolate, 15 are cricket fans, and 20 neither like chocolate nor like cricket. How many people like both cricket and chocolate?",
"solution": "Let the no. of people who like both be x.\n\n10+15-x+20=38\n\n45-x=38\n\nx=7"
},
{
"id": 60,
"answerIndex": 0,
"answers": ["18", "8", "64", "16"],
"question": "If f(x) = 2x+2 what is f(f(3))?",
"solution": "f(3) = (2*3)+2 = 8\n\nf(f(3) = f(8) = 18"
},
{
"id": 61,
"answerIndex": 0,
"answers": ["4144", "256", "8192", "102"],
"question": "What is the maximum value of x³y³ + 3 xy when x+y = 8?",
"solution": "If x=4, y=4\n\n(64*64)+48 = 4144\n\nFor all other values of x and y, we get a number <4144."
},
{
"id": 62,
"answerIndex": 0,
"answers": ["9", "6", "5", "18"],
"question": "Let f(m,n) =45*m + 36*n, where m and n are integers (positive or negative).What is the minimum positive value for f(m,n) for all values of m,n (this may be achieved for various values of m and n)?",
"solution": "The minimum positive value can be achieved when\nm is positive and\nn is negative.\n\nm=1, n=-1\n\nf(m,n) = 45-36=9\n\nIts not possible to get a value lesser than 9."
},
{
"id": 63,
"answerIndex": 0,
"answers": ["4", "10", "5", "6"],
"question": "We have an equal arms two pan balance and need to weigh objects with integral weights in the range 1 to 40 kilo grams. We have a set of standard weights and canplace the weights in any pan (i.e) some weights can be in a pan with objects and some weights can be in the other pan. The minimum number of standard weights required is",
"solution": "The weights required are 1, 3, 9 and 27.\n\nHence, the answer is 4."
},
{
"id": 64,
"answerIndex": 0,
"answers": ["15", "16", "31", "10"],
"question": "How many divisors (including 1, but excluding 1000) are there for the number 1000?",
"solution": "Express the number as the product of primes.\n\nn = (a^x)(b^y)(c^z)\na,b,c are prime numbers\nthe number of factors of n is (x+1)(y+1)(z+1)\n\n1000 = (2^3)*(5^3)\n\nNo. of factors\n= 4*4\n= 16\n\nExcluding 1000, there are 15 divisors."
},
{
"id": 65,
"answerIndex": 2,
"answers": ["35", "135", "315", "350"],
"question": "4/15 of 5/7 of a number is greater than 4/9 of 2/5 of the same number by 8. What is half of that number?",
"solution": "Let the number be x.\n\n[(4/15)*(5/7)*x] - [(4/9)*(2/5)*x] = 8\n\n(4x/21) - (8x/45) = 8\n\n4x = 8*315\n\nx/2 = 315"
},
{
"id": 66,
"answerIndex": 3,
"answers": ["38,27", "24,13", "30,19", "28,17"],
"question": "The difference between two numbers is 11 and one-fifth of their sum is 9. Find the numbers.",
"solution": "Let the numbers be x and y.\n\nx-y=11\n\n(x+y)/5 = 9\nx+y=45\n\nSolving,\nx=28, y=17"
},
{
"id": 67,
"answerIndex": 1,
"answers": ["1/2", "39/50", "7/25", "59/100"],
"question": "Which of the following is larger than 3/5?",
"solution": "39/50 is larger than 3/5."
},
{
"id": 68,
"answerIndex": 1,
"answers": ["0 and 3", "3 and 6", "6 and 9", "9 and 12"],
"question": "If x^4 + y^4 = 100, then the greatest possible value of x is between",
"solution": "x is greatest when y is lowest.\n\nThe least possible value of y^4 is 0.\n\nx^4=100\n\nx^2=10\n\nx=3.16"
},
{
"id": 69,
"answerIndex": 0,
"answers": ["86", "52", "34", "28"],
"question": "If M and N are positive integers that have remainders of 1 and 3 respectively when divided by 6, which of the following could not be a possible value of M+N?",
"solution": "M=6x+1\nN=6y+3\n\nM+N=6(x+y)+4\n\nWhen M+N is divided by 6, it should give a remainder of 4.\n\n86 gives a remainder of 2. Hence, it is not a possible value."
},
{
"id": 70,
"answerIndex": 3,
"answers": ["600", "1200", "1800", "2400"],
"question": "A candy assortment consists of seven flavors of chocolate-covered creams packed in two-layered boxes with 27 creams in each layer. The flavors are always packed in rows so that the flavor varies with each piece in the following order, vanilla, orange, cherry, vanilla, raspberry, lime, pecan, cherry, lemon. How many chocolate-covered vanilla creams are needed to pack 200 boxes of the assortment?",
"solution": "vanilla, orange, cherry, vanilla, raspberry, lime, pecan, cherry, lemon\n\nThere are 9 creams in a row. 2 vanillas in each row.\n\n27 creams in each layer. Hence, 3 such rows are in each layer. 6 vanillas in each layer.\n\n2 layers in the box. 12 vanilla creams in the box.\n\nNo. of vanilla creams in 200 boxes\n= 12*200\n= 2400"
},
{
"id": 71,
"answerIndex": 2,
"answers": ["8", "27", "42", "54"],
"question": "Which of the following cannot be a factor of the number (2^i)(3^j) , where i and j are non-negative integers?",
"solution": "42 cannot be a factor because it has a factor of 7.\n\nAll other numbers have factors of only 2 and 3."
},
{
"id": 72,
"answerIndex": 1,
"answers": ["I only", "III only", "I and III only", "II and III only"],
"question": "If p divided by 9 leaves a remainder of 1, which of the following must be true?\n\nI. p is even.\nII. p is odd.\nIII. p = 3z + 1 for some integer z.",
"solution": "p-1 is a multiple of 9. p can be either odd or even. (10, 19, ...)\n\np-1 = 3z for some integer z\n\nHence, III alone must be true."
},
{
"id": 73,
"answerIndex": 1,
"answers": ["240", "270", "295", "360"],
"question": "The difference between two numbers is 1365. On dividing the larger number by the smaller, we get 6 as quotient and the 15 as remainder. What is the smaller number?",
"solution": "Let the larger number be x and the smaller number be y.\n\nx-y = 1365\nx = 6y+15\n\nOn solving,\n6y-1350 = y\n5y = 1350\ny = 270"
},
{
"id": 74,
"answerIndex": 1,
"answers": ["100", "114", "200", "208"],
"question": "A box of 150 packets consists of 1kg packets and 2kg packets. Total weight of the box is 264kg. How many 2kg packets are there?",
"solution": "Let the number of 2kg packets be x.\n\n2x+(150-x)=264\n\nx=114"
},
{
"id": 75,
"answerIndex": 0,
"answers": ["Rs.800", "Rs.600", "Rs.200", "Rs.700"],
"question": "A man divides Rs.8600 among 5 sons, 4 daughters and 2 nephews. If each daughter receives four times as much as each nephew, and each son receives five times as much as each nephew, how much does each daughter receive?",
"solution": "5s+4d+2n=8600\n\nd=4n\ns=5n\n\n25n+16n+2n=8600\n43n=8600\nn=200\n\nd=800"
},
{
"id": 76,
"answerIndex": 2,
"answers": ["37", "38", "36", "35"],
"question": "Of the two-digit numbers (those from 11 to 95, both inclusive) how many have a second digit greater than the first digit?",
"solution": "8 numbers from 12 to 19\n7 from 23-29\n6 from 34-39\n5 from 45-49\n4 from 56-59\n3 from 67-69\n2 from 78-79\n1 - 89\n\nTotal - 36"
},
{
"id": 77,
"answerIndex": 3,
"answers": ["16", "18", "15", "14"],
"question": "Sum of three even consecutive numbers is 48. The least number is",
"solution": "x+x+2+x+4=48\n\n3x+6=48\n\nx=14"
},
{
"id": 78,
"answerIndex": 2,
"answers": ["109", "130", "137", "145"],
"question": "The difference between two numbers is 9 and the product of the two is 14. What is the square of their sum?",
"solution": "x-y=9\nxy=14\n\n(x-y)²=x²+y²-2xy\n\n81 = x²+y²-28\n\nx²+y²=109\n\n(x+y)² = x²+y²+2xy\n = 137"
},
{
"id": 79,
"answerIndex": 3,
"answers": ["5^7", "5^6", "5^9", "5^8"],
"question": "How many 9 digit numbers are possible by using the digits 1, 2, 3, 4, 5 which are divisible by 4 if repetition is allowed?",
"solution": "The last two digits can take 5 values.\n12, 24, 32, 44, 52\n\nThe first seven digits can be any one of the 5 numbers.\nNo. of ways = 5^7\n\nTotal no. of ways\n5^7 * 5 = 5^8"
},
{
"id": 80,
"answerIndex": 3,
"answers": ["51642", "71963", "92743", "71842"],
"question": "There is a five digit number\n1) It has 2 prime digits\n2) The third digit is the highest\n3) The second digit is lowest\n4) The first digit is 1 less that third digit\n5) The fifth is half of the fourth\n6) The sum of the 4th and 5th digit is less than the first.\n\nFind the number.",
"solution": "71842satisfies all the conditions."
},
{
"id": 81,
"answerIndex": 0,
"answers": ["120 frames", "140 frames", "90 frames", "84 frames"],
"question": "Two persons have 64 and 20 barrels of wine. the first one pays tax 5 barrels and 40 frames. the second one pays 2 barrel and got back 40 frames. What is the value of each barrel?",
"solution": "Tax for 64b\n5b+40f\n\nTax for 20b\n2b-40f\n\n(5b+40f)*20/64 = 2b-40f\n\n25b+200f = 32b-640f\n\n7b = 840f\n\nb=120f"
},
{
"id": 82,
"answerIndex": 3,
"answers": ["30", "33", "36", "Cannot determine"],
"question": "In a class, except 18 all are above 50 years. 15 are below 50 years of age. How many people are there?",
"solution": "Number of people above 50 years is not given.\n\nSo the total number of people in the class cannot be determined."
},
{
"id": 83,
"answerIndex": 3,
"answers": ["20", "30", "32", "39"],
"question": "A, B, C are having some marbles with each of them. A has given B and C the same number of marbles each of them already have. Then, B gave C and A the same number of marbles they already have. Then C gave A and B the same number of marbles they already have. At the end A, B, and C have equal number of marbles. If x, y, z are the marbles initially with A, B, C respectively. If the total number of marbles are 72, then the number of marbles with A at the starting",
"solution": "x+y+z=72\n\nA gives B and C\nA - (x-y-z)\nB - 2y\nC - 2z\n\nB gives A and C\nA - 2(x-y-z)\nB - 2y-(x-y-z+2z) = 3y-x-z\nC - 4z\n\nC gives A and B\nA - 4(x-y-z)\nB - 2(3y-x-z)\nC - 4z-(2x-2y-2z+3y-x-z) = 7z-x-y\n\n4(x-y-z) = (6y - 2x - 2z) = (7z - x - y)\n\nSum of these three terms is 72.\n\nSolving these equations, x=39."
},
{
"id": 84,
"answerIndex": 3,
"answers": ["21", "30", "35", "39"],
"question": "There are 3 persons Sudhir, Arvind, and Gauri. Sudhir lent cars to Arvind and Gauri as many as they had already. After some time, Arvind gave as many cars to Sudhir and Gauri as many as they have. After sometime Gauri did the same thing. At the end of this transaction each one of them had 24. Find the Sudhir originally had.",
"solution": "S A G\n\n24 24 24\n12 12 48\n6 42 24\n39 21 12"
},
{
"id": 85,
"answerIndex": 0,
"answers": ["12", "8", "6", "10"],
"question": "Ria has a jewel chest containing Rings, Pins and Ear-rings. The chest contains 26 pieces. Ria has 2 1/2 times as many rings as pins, and the number of pairs of earrings is 4 less than the number of rings. How many earrings does Ria have?",
"solution": "Let e be the number of pairs of earrings.\n\nr+p+2e=26\n\nr=2.5p\n\ne=r-4 = 2.5p-4\n\n2.5p+p+5p-8=26\n8.5p = 34\np=4\n\ne=2.5p - 4 = 6\n\n6 pairs of earrings. 12 ear rings."
},
{
"id": 86,
"answerIndex": 3,
"answers": ["24", "729", "27", "486"],
"question": "Spores of a fungus, called late blight, grow and spread infection rapidly. These pathogens were responsible for the Irish potato famine of the mid-19th century. These seem to have attacked the tomato crops in England this year. The tomato crops have reduced and the price of the crop has risen up . The price has already gone up to $45 a box from $27 a box a month ago. How much more would a vegetable vendor need to pay to buy 27 boxes this month over what he would have paid last month?",
"solution": "Difference in price of 1 box\n= 45-27 = 18\nDifference in prices of 27 boxes\n= 18*27 = 486"
},
{
"id": 87,
"answerIndex": 0,
"answers": ["2", "3", "4", "5"],
"question": "The unit digit in the product (784 * 618 * 917 * 463) is ?",
"solution": "Unit digit in the given product = Unit digit in (4 * 8 * 7 * 3) = 2.\n"
},
{
"id": 88,
"answerIndex": 2,
"answers": ["1", "5", "7", "9"],
"question": "The unit digit in 7^105 is ?",
"solution": "Unit digit in 7105 = Unit digit in [(74)26 * 7]. But, unit digit in (74)26 = 1. So, Unit digit in 7105 = (1 * 7) = 7."
},
{
"id": 89,
"answerIndex": 2,
"answers": ["1", "2", "5", "6"],
"question": "Which is the smallest number that divides 2880 and gives a perfect square?",
"solution": "2880 = 12*12*5*2*2\n\nWhen divided by 5, it gives a perfect square."
},
{
"id": 90,
"answerIndex": 1,
"answers": ["8", "15", "16", "0"],
"question": "There are 23 reading spots in a room. Each reading spot has a round table. Each round table has 9 chairs. If different number of persons are sitting at each reading spot and if there are 36 persons inside the room, then how many reading spots do not have atleast a single reader?",
"solution": "Each reading spot has different number of readers.\n\n1+2+3+4+5+6+7+8=36\n\nOnly 8 spots are occupied.\n\n(23-8)=15 spots have no readers."
},
{
"id": 91,
"answerIndex": 0,
"answers": ["30", "31", "20", "21"],
"question": "Shreya writes first 100 whole numbers. Let A and B be the number of times she writes 0 and 9 respectively. Find the value of A+B.",
"solution": "The first 100 whole numbers are \n0 to 99.\n\nA = Number of 0's in (0,10,20,30,40,50,60,70,80,90)\n =10\n\nB=Number of 9's in (9,19,29,39,49,59,69,79,89,90,91,92,93,94,95,96,97,98,99)\n =20\n\nA+B=30\n"
},
{
"id": 92,
"answerIndex": 0,
"answers": ["A", "B", "C", "A and C"],
"question": "Pizza shops make pizzas of same thickness but different diameter. Cost of pizza A with diameter 8 cm is 80 $, cost of the pizza B with diameter 12 cm is 240 $, cost of the pizza C with diameter 24 cm is 720 $. Which of the above mentioned pizzas gives the best value for money?",
"solution": "A\n8 cm = 80$\n1 cm =10$\n\nB\n12 cm = 240$\n1 cm =20$\n\nC\n24 cm = 720$\n1 cm =30$\n\nA gives the best value for money."
},
{
"id": 93,
"answerIndex": 2,
"answers": ["34", "40", "52", "42"],
"question": "The great Indian mathematician Bhaskaracharya formulated this problem in the twelfth century for his teenager prime number aged daughter Lilavati. He also authored the eponymous Lilavati, a compendium of mathematical puzzles, in which the number of problems that use this formula is the sum of two prime numbers. The product of the two prime numbers is smaller than the total number of problems in the Lilavati. Now, if the difference of any two numbers is 4 and their product is 18, what is the sum of their squares?",
"solution": "a-b=4\nab=18\n\na²+b²=(a-b)²+2ab = 16+36 = 52"
},
{
"id": 94,
"answerIndex": 0,
"answers": ["12", "10", "11", "15"],
"question": "Find the number of trailing zeroes in 52!.",
"solution": "10, 20, 30, 40, 50\n5 zeros\n\n5, 15, 25, 35, 45\nwhen multiplied by even numbers, give 5 zeros.\n\n25, 50 contribute an extra zero\nsince they are multiples of 25.\n\nTotal\n= 5+5+2\n= 12"
},
{
"id": 95,
"answerIndex": 2,
"answers": ["120", "54", "60", "48"],
"question": "How many numbers can be formed using all of 1,2,3,4,5 (without repetition), when the digit at the units place must be greater than that in the tenth place?",
"solution": "Number of 5 digit numbers using 1,2,3,4,5 without repition\n= 5*4*3*2*1\n= 120\n\nUnit's digit > Ten's digit\n\nEg. Of the numbers ending with 45 and 54, only those ending with 45 will be considered.\n\nSo, half of the numbers will be ruled out.\n\n120/2 = 60 numbers meet the criteria."
},
{
"id": 96,
"answerIndex": 0,
"answers": ["15", "24", "33", "06"],
"question": "The sum of the digits of a two digit number is 6. When 36 is added to the number, the digits are reversed. Find the number.",
"solution": "x+y = 6\n\n10x+y+36 = 10y+x\n\n9x-9y = -36\n\nx-y = -4\nx+y = 6\n\nx = 1\ny = 5\n\nThe number is 15."
},
{
"id": 97,
"answerIndex": 0,
"answers": ["7", "8", "9", "10"],
"question": "From 1 to 100, how many numbers are divisible by 4 and also contain 4?",
"solution": "4, 24, 40, 44, 48, 64, 84"
},
{
"id": 98,
"answerIndex": 0,
"answers": ["1/3", "1", "1.3", "9"],
"question": "A sales person multiplied a number and got the answer as 3, instead of that number divided by 3. What is the answer he actually has to get?",
"solution": "Let the number be x.\n\n3x = 3\nx = 1\n\nHe has to divide the number by 3.\n\nSo, the answer is 1/3."
},
{
"id": 99,
"answerIndex": 1,
"answers": ["5", "9", "10", "11"],
"question": "Five times an unknown number is 5 less than 50. The unknown number is",
"solution": "5x = 50-5\nx = 9"
},
{
"id": 100,
"answerIndex": 3,
"answers": ["25", "26", "27", "28"],
"question": "The sum of two consecutive numbers is 55, which is the largest number?",
"solution": "x+x+1 = 55\n\n2x = 54\nx = 27\n\nx+1 = 28"
}
]
}