-
Notifications
You must be signed in to change notification settings - Fork 0
/
number-series.json
705 lines (705 loc) · 25.6 KB
/
number-series.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
{
"formula": "The series can contain \n\n(i) Square numbers\n1,4,9,16,...\n(ii) Cube numbers\n1,8,27,....\n(iii) Prime numbers\n2,3,5,7,....\n(iii) A combination of two series\n1,1,4,8,9,27,16,...\n(iv) Arithmetic progression\n2,4,6,8,10,....\n(v) Geometric progression\n1,2,4,8,16,....\n(vi) Fibonacci Series\n0,1,1,2,3,5,8,.....\n",
"problems": [
{
"id": 1,
"answerIndex": 1,
"answers": ["196", "215", "217", "225"],
"question": "Find the next number\n2, 7, 28, 63, 126, ___",
"solution": "1³+1, 2³-1, 3³+1, 4³-1, 5³+1, 6³-1......"
},
{
"id": 2,
"answerIndex": 3,
"answers": ["90", "120", "125", "130"],
"question": "2, 10, 30, 68, ___",
"solution": "1³+1, 2³+2, 3³+3, 4³+4, 5³+5......"
},
{
"id": 3,
"answerIndex": 1,
"answers": ["218", "217", "216", "215"],
"question": "2, 9, 28, 65, 126, ___",
"solution": "1³+1, 2³+1, 3³+1, 4³+1, 5³+1, 6³+1...... "
},
{
"id": 4,
"answerIndex": 3,
"answers": ["336", "340", "343", "350"],
"question": "2, 6, 30, 60, 130, 210, ___",
"solution": "1³+1, 2³-2, 3³+3....."
},
{
"id": 5,
"answerIndex": 1,
"answers": ["47", "56", "57", "63"],
"question": "1, 2, 6, 15, 31, ___",
"solution": "The difference between the numbers is 1, 4, 9 and 16. \nThe next difference is 25.\n31+25 = 56"
},
{
"id": 6,
"answerIndex": 0,
"answers": ["8", "12", "20", "15"],
"question": "2, 4, 8, 6, 3, 5, 10, ___",
"solution": "2+2,4*2,8-2,6:2,3+2,......"
},
{
"id": 7,
"answerIndex": 3,
"answers": ["275", "341", "583", "493"],
"question": "Find the odd man out\n165,275,341,583,493",
"solution": "In the other numbers, second digit = first digit + third digit"
},
{
"id": 8,
"answerIndex": 2,
"answers": ["9", "28", "64", "126"],
"question": "Find the odd man out\n2, 9, 28, 64, 126",
"solution": "All other numbers are of the form x³+1"
},
{
"id": 9,
"answerIndex": 3,
"answers": ["212", "824", "422", "121"],
"question": "Find the odd one out\n212, 331, 824, 632, 422, 121",
"solution": "In the other numbers, first digit = second digit*third digit"
},
{
"id": 10,
"answerIndex": 1,
"answers": ["19", "39", "59", "79"],
"question": "Find the odd one out\n19, 29, 39, 59, 79",
"solution": "All other numbers are prime numbers"
},
{
"id": 11,
"answerIndex": 0,
"answers": ["561", "482", "393", "263"],
"question": "Find the odd one out\n561, 482, 393, 263, 144",
"solution": "In all other numbers, first digit* third digit = second digit"
},
{
"id": 12,
"answerIndex": 2,
"answers": ["22", "23", "24", "25"],
"question": "Find the next number\n3, 4, 6, 8, 12, 14, 18, 20, __",
"solution": "Prime Number+1"
},
{
"id": 13,
"answerIndex": 0,
"answers": ["33", "43", "53", "73"],
"question": "Find the odd one out\n23, 33, 43, 53, 73",
"solution": "All other numbers are prime numbers"
},
{
"id": 14,
"answerIndex": 3,
"answers": ["412", "416", "422", "426"],
"question": "Which number comes next?\n402, 388, 410, 396, 418, 404, ____",
"solution": "388+8=396396+8=404\n410+8=418418+8=426\nThe two series are combined together."
},
{
"id": 15,
"answerIndex": 2,
"answers": ["43", "53", "69", "64"],
"question": "6, 7, 9, 13, 21, 37, ____",
"solution": "6+(2^0), 7+(2^1), 9+(2^2),....37+(2^5)"
},
{
"id": 16,
"answerIndex": 2,
"answers": ["480", "1200", "1440", "960"],
"question": "2,4,12,48,240,____",
"solution": "2*2, 4*3, 12*4,.....240*6"
},
{
"id": 17,
"answerIndex": 1,
"answers": ["12", "13", "14", "16"],
"question": "0,1,1,2,3,5,8,____",
"solution": "This is the Fibonacci Series.\n\n0+1 = 1\n1+1=2\n..........\n5+8 = 13"
},
{
"id": 18,
"answerIndex": 1,
"answers": ["12", "16", "10", "17"],
"question": "9,12,11,14,13,____",
"solution": "Add 3 to the first number.\n\nSubtract 1 from the second number.\n\n9+3, 12-1, 11+3, 14-1, \n\n13+3 = 16"
},
{
"id": 19,
"answerIndex": 0,
"answers": ["122", "64", "125", "81"],
"question": "5,10,13,26,29,58,61,___",
"solution": "First number is multiplied by 2.\n\n3 is added to the second number.\n\nThis is repeated.\n\n61*2 = 122"
},
{
"id": 20,
"answerIndex": 2,
"answers": ["60", "64", "72", "70"],
"question": "2,6,12,20,30,42,56,____",
"solution": "The difference between consecutive numbers increases by 2.\n2+4 = 6\n6+6 = 12\n12+8 = 20\n......\n56+16 = 72\n"
},
{
"id": 21,
"answerIndex": 0,
"answers": ["43", "42", "45", "44"],
"question": "2,4,7,12,19,30,____",
"solution": "The differences between consecutive numbers are prime.\n2,3,5,7,11\nThe next prime number is 13.\n30+13=43"
},
{
"id": 22,
"answerIndex": 1,
"answers": ["8", "64", "49", "81"],
"question": "1,4,27,4,25,216,7,___",
"solution": "1¹,2²,3³,4¹,5²,6³,7¹,8²..."
},
{
"id": 23,
"answerIndex": 2,
"answers": ["5", "4", "2", "1"],
"question": "240,240,120,40,10,___",
"solution": "240:1, 240:2, 120:3, 40:4, 10:5 = 2"
},
{
"id": 24,
"answerIndex": 3,
"answers": ["-5", "6", "10", "9"],
"question": "5,4,6,3,7,2,8,1,?",
"solution": "5-1, 4+2, 6-3, 3+4, 7-5, 2+6, 8-7, 1+8=9\n\nIt can also be taken as the combination of the two series\n5,6,7,8,9,.... and\n4,3,2,1,0,.....\n"
},
{
"id": 25,
"answerIndex": 1,
"answers": ["70", "80", "75", "88"],
"question": "8,15,24,35,48,63,?",
"solution": "The difference between consecutive numbers increases by 2. \n8+7\n15+9\n21+11\n........\n63+17 = 80"
},
{
"id": 26,
"answerIndex": 1,
"answers": ["4", "8", "6", "5"],
"question": "4,3,5,4,6,5,7,6,?",
"solution": "The first number is subtracted by 1.\nThe next number is added by 2.\n\n6+2 = 8"
},
{
"id": 27,
"answerIndex": 0,
"answers": ["17", "15", "13", "11"],
"question": "17,19,17,17,17,15,17,13,___",
"solution": "In the series\n\n19,17,15,13,11,.....\n\n17 is present between all numbers.\n\nSo the next number in the series is 17."
},
{
"id": 28,
"answerIndex": 3,
"answers": ["46", "38", "44", "42"],
"question": "48,44,46,42,44,40,?",
"solution": "4 is subtracted from the first number.\n\n2 is added to the next number. \n\nThis is repeated.\n\n40+2=42"
},
{
"id": 29,
"answerIndex": 1,
"answers": ["6", "5.8", "5.5", "5.2"],
"question": "1.3,2.2,3.1,4.0,4.9,___",
"solution": "Addition series\n\n0.9 is added to each number.\n\n4.9+0.9 = 5.8"
},
{
"id": 30,
"answerIndex": 2,
"answers": ["168", "172", "170", "166"],
"question": "140,142,146,152,160,___",
"solution": "Addition Series\n\n2 is added to the first number.\n4 is added to the second number.\n6 is added to the third number and so on.\n\n160+10=170"
},
{
"id": 31,
"answerIndex": 1,
"answers": ["90", "86", "84", "176"],
"question": "1, 4, 2, 8, 6, 24, 22, 88, ____",
"solution": "The first number is multiplied by 4 and the next number is subtracted by 2. This is repeated.\n\n88-2=86"
},
{
"id": 32,
"answerIndex": 0,
"answers": ["344", "2401", "347", "1221"],
"question": "1, 7, 8, 49, 50, 56, 57, 343, ____",
"solution": "1*7 = 7\n7+1 = 8\n\n7*7 = 49\n49+1 = 50\n\n8*7 = 56\n56+1 = 57\n\n49*7 = 343\n343+1 = 344"
},
{
"id": 33,
"answerIndex": 0,
"answers": ["5", "8", "10", "1"],
"question": "5, ?, 15, 75, 525, 4725",
"solution": "5 x 1 = 5\n5 x 3 = 15\n15 x 5 = 75\n75 x 7 = 525\n525 x 9 = 4725\n\nHence, the answer is 5."
},
{
"id": 34,
"answerIndex": 1,
"answers": ["42", "40", "38", "39"],
"question": "70, 54, 45, 41, ___",
"solution": "70-16 = 54\n54-9 = 45\n45-4 = 41\n41-1 = 40"
},
{
"id": 35,
"answerIndex": 3,
"answers": ["2676", "2", "445", "86"],
"question": "Cara, a blue whale participated in a weight loss program at the biggest office. At the end of every month, the decrease in weight from original weight was measured and noted as 1, 2, 6, 21, 86, 445, 2676. While Cara made a steadfast effort, the weighing machine showed an erroneous weight once. What was that?",
"solution": "This is a number series problem.\n1, 2, 6, 21, 86, 445, 2676\nThe wrong term has to be found out.\n\n1*1 + 1 = 2\n2*2 + 2 = 6\n6*3 + 3 = 21\n21*4 + 4 = 88\n88*5 + 5 = 445\n\nHence, 86 is wrong. It should be 88."
},
{
"id": 36,
"answerIndex": 2,
"answers": ["45", "90", "91", "35"],
"question": "3, 22, 7, 45, 15, ?, 31",
"solution": "Combination of two series\n\n3, 7, 15, 31\n22, 45, ?\n\nThe number is doubled and 1 is added to it.\n\n(45*2)+1=91"
},
{
"id": 37,
"answerIndex": 0,
"answers": ["22", "27", "23", "28"],
"question": "19,24,20,25,21,26,?",
"solution": "This is a combination of two series.\n\n19, 20, 21, 22, ... and\n24, 25, 26, ...."
},
{
"id": 38,
"answerIndex": 1,
"answers": ["13", "14", "15", "17"],
"question": "11,14,12,15,13,16,?",
"solution": "This is a combination of two series.\n\n11, 12, 13, 14, .... and\n14, 15, 16, ....."
},
{
"id": 39,
"answerIndex": 2,
"answers": ["7", "8", "9", "10"],
"question": "What is the missing number in this series?\n8 2 14 6 11 _ 14 6 18 12",
"solution": "The sum of the first and last numbers is 20.\n\nThe sum of the second and second from last numbers is 20.\n\nIn this way, 11+9=20"
},
{
"id": 40,
"answerIndex": 0,
"answers": ["15", "16", "17", "18"],
"question": "Which number comes before 30 in the below series?\n1,2,3,6,7,14, __ , 30,....",
"solution": "Combination of two series.\n\n1,3,7,?\n2,6,14,30\n\n1+2=3\n3+4=7\n7+8=15"
},
{
"id": 41,
"answerIndex": 0,
"answers": ["16 and 8", "36 and 4", "25 and 5", "49 and 7"],
"question": "1 4 9 ?\n1 2 3 4\n2 4 6 ?",
"solution": "The numbers in the first row are square numbers.\nThe numbers in the third row are multiples of 2.\n\nSo, 16 and 8."
},
{
"id": 42,
"answerIndex": 2,
"answers": ["12", "16", "8", "4"],
"question": " 6 6 8\n 5 7 5\n 4 3 ?\n120 126 320",
"solution": "6*5*4=120\n6*7*3=126\n8*5*x=320\n\nx=320/40=8"
},
{
"id": 43,
"answerIndex": 2,
"answers": ["5", "11", "13", "8"],
"question": "1 2 3 2 10 12\n2 5 12 10 16 13\n1 2 1 ? 10 24",
"solution": "Adding the numbers in each column,\n4, 9, 16, (12+?), 36, 49\n\n12+13=25"
},
{
"id": 44,
"answerIndex": 2,
"answers": ["0", "3", "5", "7"],
"question": "3 8 10 2 ? 1\n6 56 90 2 20 0",
"solution": "Adding the numbers in each column,\n9, 64, 100, 4, (20+?), 1\n\nAll are square numbers.\n\nHence, 5 replaces the question mark."
},
{
"id": 45,
"answerIndex": 1,
"answers": ["14, 11", "15, 12", "8, 15", "15, 19"],
"question": "8, 12, 9, 13, 10, 14, 11, ___ , ___",
"solution": "It is a combination of two series.\n\n8, 9, 10, 11, 12, .... and\n12, 13, 14, 15, ....\n\nHence, the answer is 15, 12"
},
{
"id": 46,
"answerIndex": 0,
"answers": ["20", "25", "30", "50"],
"question": "80, 10, 70, 15, 60, ___",
"solution": "This is a combination of two series.\n\n80, 70, 60, 50... and\n10, 15, 20, ....\n\nHence, 20 comes next."
},
{
"id": 47,
"answerIndex": 3,
"answers": ["3", "3.3", "3.5", "3.6"],
"question": "5.2, 4.8, 4.4, 4, ___",
"solution": "0.4 is subtracted from every number.\n\n3.6 comes next."
},
{
"id": 48,
"answerIndex": 0,
"answers": ["8", "10", "15", "20"],
"question": "1000, 200, 40, ___",
"solution": "Each number is divided by 5.\n\n40/5 = 8"
},
{
"id": 49,
"answerIndex": 2,
"answers": ["22", "24", "25", "26"],
"question": "22, 21, 23, 22, 24, 23, ___",
"solution": "This is a combination of two series.\n\n22, 23, 24, 25,.... and\n21, 22, 23, 24,..\n\nHence, 25 comes next."
},
{
"id": 50,
"answerIndex": 2,
"answers": ["44", "45", "46", "47"],
"question": "1, 6, 13, 22, 33,",
"solution": "The pattern is + 5, + 7, + 9, + 11,...\n\nMissing number = 33 + 13 = 46.\n"
},
{
"id": 51,
"answerIndex": 1,
"answers": ["324", "243", "210", "162"],
"question": "3, 9, 27, 81,\n",
"solution": "Each term of the given series is obtained by multiplying its preceding term by 3.\n\nMissin number = 81 * 3 = 243."
},
{
"id": 52,
"answerIndex": 0,
"answers": ["97", "98", "99", "100"],
"question": "1, 9, 17, 33, 49, 73,",
"solution": "The pattern is + 8, + 8, + 16, + 24,....\n\nMissing number = 73 + 24 = 97"
},
{
"id": 53,
"answerIndex": 0,
"answers": ["14", "16", "18", "24"],
"question": "2, 5, 9, , 20, 27",
"solution": "The pattern is + 3, + 4,....\n\nMissing number = 9 + 5 = 14."
},
{
"id": 54,
"answerIndex": 1,
"answers": ["60", "65", "68", "70"],
"question": "5, 9, 17, 29, 45,",
"solution": "The pattern is + 4, + 8, + 12, + 16, ...\n\nMissing number = 45 + 20 = 65."
},
{
"id": 55,
"answerIndex": 2,
"answers": ["92", "115", "127", "131"],
"question": "3, 7, 15, 31, 63,",
"solution": "Each number in the series is the preceding number multiplied by 2 and then increased by 1.\nThus, (3 * 2) + 1 = 7, \n(7 * 2) + 1 = 15,\n(15 * 2) + 1 = 31 ans so on.\n\nMissing number = (63 * 2) + 1 =127."
},
{
"id": 56,
"answerIndex": 3,
"answers": ["25", "26", "27", "28"],
"question": "1, 6, 15, , 45, 66, 91",
"solution": "The pattern is + 5, + 9, ..., + 21, + 25\n\nMissing number = 15 + 13 = 28."
},
{
"id": 57,
"answerIndex": -1,
"answers": ["9", "11", "13", "15"],
"question": "1, 2, 3, 5, 8",
"solution": "Each term in the series is the sum of the preceding two terms.\nThus, 1 + 2 = 3,\n2 + 3 = 5,\n3 + 5 = 8 and so on.\n\nMissing number = 5 + 8 = 13."
},
{
"id": 58,
"answerIndex": 3,
"answers": ["45.5", "39.5", "30.5", "40.5"],
"question": "0.5, 1.5, 4.5, 13.5",
"solution": "Each term of the series is obtained by multiplying the preceding term by 3.\n\nMissing number = 13.5 * 3 = 40.5."
},
{
"id": 59,
"answerIndex": 2,
"answers": ["441", "484", "529", "729"],
"question": "121, 225, 361,",
"solution": "The numbers are 112, 152, 192,... i.e. 112, (11 + 4 * 1)2, (11 + 4 * 2)2,....\n\nMissing number =(11 + 4 * 3)2 = (23)2 = 529."
},
{
"id": 60,
"answerIndex": 0,
"answers": ["24", "22", "20", "18"],
"question": "0, 2, 8, 14, , 34",
"solution": "The number are 12 - 1, 22 - 2, 32 - 1, 42 - 2,....\n\nMissing number = 52 - 1 = 24."
},
{
"id": 61,
"answerIndex": 3,
"answers": ["228", "256", "352", "456"],
"question": "19, 2, 38, 3, 114, 4,",
"solution": "The sequence is a combination of two series :\nI. 19, 38, 114, (....) and II. 2, 3, 4\nThe pattern followed in I is * 2, * 3,...\n\nMissing number = 114 * 4 = 456."
},
{
"id": 62,
"answerIndex": 1,
"answers": ["18", "27", "36", "81"],
"question": "1, 2, 3, 6, 9, 18, , 54",
"solution": "The numbers are alternately multiplied by 2 and 3 / 2.\nThus, 1 * 2 = 2,\n2 * 3 / 2 = 3, \n3 * 2 = 6,\n6 * 3 / 2 = 9 and so on.\n\nMissing number = 18 * 3 / 2 = 27."
},
{
"id": 63,
"answerIndex": 3,
"answers": ["43", "49", "50", "59"],
"question": "4, 5, 9, 18, 34, (.....)",
"solution": "The pattern is + 1, + 4, + 9, + 16,... i.e., + 12, + 22, + 32,+ 42,...\n\nMissing number = 34 + 52 = 34 + 25 = 59."
},
{
"id": 64,
"answerIndex": 3,
"answers": ["144", "216", "288", "360"],
"question": "3, 6, 18, 72",
"solution": "The pattern is * 2, * 3, * 4,...\n\nMissing number = 72 * 5 = 360."
},
{
"id": 65,
"answerIndex": 2,
"answers": ["3", "6", "8", "9"],
"question": "66, 36, 18,",
"solution": "Each number is the series is the product of the digit of the preceding number.\nThus, 6 * 6 = 36,\n3 * 6 = 18 and so on.\n\nMissing number = 1 * 8 = 8."
},
{
"id": 66,
"answerIndex": 0,
"answers": ["145", "129", "113", "97"],
"question": "21, 25, 33, 49, 81",
"solution": "The pattern is + 4, + 8, + 16, + 32,.... i.e. + 22, + 23, + 24, + 25,...\n\nMissing number = 81 + 26 = 81 + 64 = 145."
},
{
"id": 67,
"answerIndex": 3,
"answers": ["54", "60", "66", "72"],
"question": "3, 6, 5, 20, 7, 42, 9,",
"solution": "The sequence is a combination of two series :\nI. 3, 5, 7, 9 and\nII. 6, 20, 42, (....)\nThe pattern is followed in II is + 14, + 22,....\n\nMissing number = 42 + 30 = 72."
},
{
"id": 68,
"answerIndex": 2,
"answers": ["37", "44", "50", "55"],
"question": "1, 3, 4, 8, 15, 27,",
"solution": "The sum of any three consecutive terms of the series gives the next term.\nThus, 1 + 3 + 4 = 8 ;\n3 + 4 + 8 = 15 ;\n4 + 8 + 15 = 27 and so on.\n\nMissing number = 8 + 15 + 27 = 50.\n"
},
{
"id": 69,
"answerIndex": 3,
"answers": ["111", "120", "121", "132"],
"question": "2, 15, 41, 80",
"solution": "The pattern is + 13, + 26, + 39,...\n\nMissing number = 80 + 52 = 132."
},
{
"id": 70,
"answerIndex": 2,
"answers": ["24", "25", "26", "27"],
"question": "8, 10, 14, 18, , 34, 50, 66",
"solution": "The pattern is + 2, + 4, + 4,... + 16, + 16.\n\nMissin number = 18 + 8 = 26."
},
{
"id": 71,
"answerIndex": 2,
"answers": ["60", "95", "120", "150"],
"question": "1, 2, 6, 24",
"solution": "The pattern is * 2, * 3, * 4,....\n\nMissing number = 24 * 5 = 120."
},
{
"id": 72,
"answerIndex": 3,
"answers": ["1038", "1998", "3008", "3968"],
"question": "2, 3, 8, 63, (.....)",
"solution": "Each term in the series is one less than the square of the preceding term.\nThus, 22 - 1 = 3,\n32 - 1 = 8,\n82 - 1 = 63.\n\nMissing number = (63)2 - 1 = 3969 - 1 = 3968."
},
{
"id": 73,
"answerIndex": 1,
"answers": ["154.5", "162.5", "164.5", "166.5"],
"question": "95, 115.5, 138, , 189",
"solution": "The pattern is + 20.5, + 22.5,....\n\nMissing term = 138 + 24.5 = 162.5"
},
{
"id": 74,
"answerIndex": 1,
"answers": ["24", "28", "77", "218"],
"question": "4, 10, , 82, 244, 730",
"solution": "Each number in the series is the preceding number multiplied by 3 and then decreased by 2."
},
{
"id": 75,
"answerIndex": 3,
"answers": ["128", "144", "192", "256"],
"question": "4, 32, 128,",
"solution": "The pattern is * 8, * 4,....\n\nMissing term = 128 * 2 = 256."
},
{
"id": 76,
"answerIndex": 1,
"answers": ["76", "75", "74", "72"],
"question": "2, 5, 9, 19, 37,",
"solution": "The pattern is * 2 + 1, * 2 - 1, * 2 + 1, * 2 - 1,....\n\nMissing number = 37 * 2 + 1 = 75."
},
{
"id": 77,
"answerIndex": 1,
"answers": ["300", "336", "420", "525"],
"question": "24, 60, 120, 210,",
"solution": "The pattern is+ 36, + 60, + 90, ....\ni.e., + [ 6 * (6 + 0) ], + [ 6 * (6 + 4) ], + [ 6 * (6 + 9) ],.....\n\nMissng number = 210 + [ 6 * (6 + 15)] = 210 + 126 = 336."
},
{
"id": 78,
"answerIndex": 2,
"answers": ["375", "420", "435", "390"],
"question": "165, 195, 255, 285, 345,",
"solution": "Eacch number is 15 multiplied by a primev number\ni.e. 15 * 11, 15 * 13, 15 * 17, 15 * 19, 15 * 23.\n\nMissing term = 15 * 29 = 435."
},
{
"id": 79,
"answerIndex": 3,
"answers": ["95", "97", "99", "101"],
"question": "5, 17, 37, 65, , 145",
"solution": "The numbers are 2² + 1, 4² + 1, 6²+ 1, 8²+ 1,...., 12²+ 1.\n\nMissing number = 10²+ 1 = 101."
},
{
"id": 80,
"answerIndex": 1,
"answers": ["41", "51", "60", "71"],
"question": "9, 11, 20, 31, (.......), 82",
"solution": "Each term in the series is the sum of the preceding two terms.\n\nMissing number = 20 + 31 = 51."
},
{
"id": 81,
"answerIndex": 3,
"answers": ["115", "148", "170", "181"],
"question": "5, 16, 49, 104,",
"solution": "The pattern is + 11, + 33, + 55,....\ni.e., + (11 * 1), + (11 * 3), + (11 * 5),....\n\nMissing number = 104 + (11 * 7) = 181."
},
{
"id": 82,
"answerIndex": 3,
"answers": ["0", "1", "2", "3"],
"question": "34, 18, 10, 6, 4",
"solution": "Each term is divided by 2 and then increased by 1 to obtain the next term.\n\nMissing term = (4 / 2) + 1 = 3."
},
{
"id": 83,
"answerIndex": 2,
"answers": ["322", "332", "342", "352"],
"question": "462, 420, 380, , 306",
"solution": "The pattern is - 42, - 40, ...\n\nMissing number = 380 - 38 = 342."
},
{
"id": 84,
"answerIndex": 0,
"answers": ["550", "310", "295", "285"],
"question": "3, 8, 22, 63, 185,",
"solution": "The pattern is * 3 - 1, * 3 - 2, * 3 - 3, * 3 - 4,..\n\nMissing number = (185 * 3 ) - 5 = 550."
},
{
"id": 85,
"answerIndex": 2,
"answers": ["246", "247", "248", "249"],
"question": "1, 2, 5, 12, 27, 58, 121,",
"solution": "The pattern is * 2 + 0, * 2 + 1, * 2 + 2, * 2 + 3, * 2 + 4, * 2 + 5,...\n\nMissing number = 121 * 2 + 6 = 248."
},
{
"id": 86,
"answerIndex": 2,
"answers": ["0.9", "0.82", "1", "0.95"],
"question": "0.5, 0.55, 0.65, 0.8,",
"solution": "The pattern is + 0.05, 0.10, + 0.15,....\n\nMissing number = 0.8 + 0.20 = 1."
},
{
"id": 87,
"answerIndex": 0,
"answers": ["70", "75", "80", "85"],
"question": "3, 8, 13, 24, 41,",
"solution": "The pattern followed is :\nnth term + (n + 1) th term + (n + 1) = (n + 2) th term.\nThus, 1st term + 2nd term + 2 = 3rd term;\n2nd term + 3rd term + 3 = 4th term and so on.\n\nMissing term = 6th term\n= 4th term + 5th term + 5\n= 24 + 41 + 5 = 70."
},
{
"id": 88,
"answerIndex": 0,
"answers": ["34", "54", "55", "56"],
"question": "97, 86, 73, 58, 45,",
"solution": "The pattern is - 11, - 13, - 15, - 13,...\n\nMissin number = 45 -11 = 34."
},
{
"id": 89,
"answerIndex": 0,
"answers": ["31", "33", "35", "36"],
"question": "17, 19, 23, 29, , 37",
"solution": "The given series consists of consecutive prime numbers starting from 17. The next prime number after 29 is 31.\nSo, the missing number is 31."
},
{
"id": 90,
"answerIndex": 1,
"answers": ["21", "25", "27", "33"],
"question": "5, 6, 9, 15, , 40",
"solution": "The pattern is + 1, + 3, + 6,... i.e. + 1, + (1 + 2), + (1 + 2 + 3),...\n\nMissing number = 15 + (1 + 2 + 3 + 4) = 25."
},
{
"id": 91,
"answerIndex": 0,
"answers": ["147", "162", "183", "192"],
"question": "3, 12, 27, 48, 75, 108, (........)",
"solution": "The numbers are 3 * 1², 3 * 2², 3 * 3², 3 * 4², 3 * 5², 3 * 6²,.....\n\nMissing number = 3 * 7² = 3 * 49 = 147."
},
{
"id": 92,
"answerIndex": 1,
"answers": ["579", "578", "568", "478"],
"question": "134, 245, 356, 467,",
"solution": "Each term is obtained by adding 111 to the preceding term.\n\nMissing number = 467 + 111 = 578."
},
{
"id": 93,
"answerIndex": 1,
"answers": ["50", "45", "47", "49"],
"question": "5, 11, 18, 26, 35, ?",
"solution": "5+6=11\n11+7=18\n......\n35+11=45"
},
{
"id": 94,
"answerIndex": 0,
"answers": ["210", "240", "250", "180"],
"question": "0, 6, 24, 60, 120, ?",
"solution": "0*1*2=0\n1*2*3=6\n2*3*4=24\n3*4*5=60\n4*5*6=120\n5*6*7=210"
},
{
"id": 95,
"answerIndex": 2,
"answers": ["10", "11", "13", "21"],
"question": "1, 3, 3, 6, 7, 9, ?, 12, 21.",
"solution": "This is a combination of two series.\n\n1,3,7,?,21\n3,6,9,12\n\n1+2=3\n3+4=7\n7+6=13\n13+8=21"
},
{
"id": 96,
"answerIndex": 0,
"answers": ["37", "36", "39", "38"],
"question": "1, 2, 5, 10, 17, 26, ____",
"solution": "1+1=2\n2+3=5\n5+5=10\n.............\n26+11=37"
},
{
"id": 97,
"answerIndex": 2,
"answers": ["27", "30", "32", "36"],
"question": "3, 4, 6, 8, 12, 16, 24, ____",
"solution": "This is a combination of two series.\n\n4,8,16,____\n3,6,12,24\n\n16*2=32"
},
{
"id": 98,
"answerIndex": 1,
"answers": ["48", "49", "52", "56"],
"question": "1, 4, 9, 25, 36, ?",
"solution": "Square Numbers"
},
{
"id": 99,
"answerIndex": 3,
"answers": ["11", "10", "8", "9"],
"question": "3, 8, 6, 14, ?, 20",
"solution": "3,6,....\n8,14,20,....\n\n3+3=6\n6+3=9"
},
{
"id": 100,
"answerIndex": 1,
"answers": ["2/3", "3", "6", "27"],
"question": "(1/9), (1/3), 1, ____ , 9",
"solution": "Each number is multiplied by 3.\n\n1*3=3"
}
]
}