Episode 8 — Aptitude and Reasoning / 8.6 — Number System

8.6 Number System -- Practice MCQs

Instructions: Choose the correct option for each question. Answers and explanations are inside collapsible sections. Try to solve within 1-2 minutes per question.


Easy Level (Q1--Q15)


Q1. The sum of first 50 natural numbers is:

(a) 1250 (b) 1275 (c) 1300 (d) 1225

Answer

(b) 1275

Sum = n(n+1)/2 = 50 x 51 / 2 = 1275

Q2. Which of the following is a prime number?

(a) 87 (b) 91 (c) 97 (d) 93

Answer

(c) 97

87 = 3 x 29  (not prime)
91 = 7 x 13  (not prime)
93 = 3 x 31  (not prime)
97 --> test primes up to sqrt(97) ~ 9.8: {2, 3, 5, 7}
      not divisible by any --> 97 is prime

Q3. The unit digit of 7^95 is:

(a) 1 (b) 3 (c) 7 (d) 9

Answer

(b) 3

Cycle of 7: {7, 9, 3, 1}, length = 4
95 mod 4 = 3
3rd position in cycle = 3

Verification: 7^1=7, 7^2=49(unit 9), 7^3=343(unit 3)

Q4. How many trailing zeros are in 80! ?

(a) 16 (b) 18 (c) 19 (d) 20

Answer

(c) 19

floor(80/5) + floor(80/25) + floor(80/125)
= 16 + 3 + 0
= 19

Q5. The number 7,24,815 is divisible by:

(a) 3 only (b) 5 only (c) Both 3 and 5 (d) Neither 3 nor 5

Answer

(c) Both 3 and 5

Divisibility by 5: Last digit = 5 --> divisible by 5  ✓
Divisibility by 3: Sum = 7+2+4+8+1+5 = 27, 27/3 = 9 --> divisible by 3  ✓

Q6. The total number of factors of 96 is:

(a) 10 (b) 12 (c) 8 (d) 16

Answer

(b) 12

96 = 2^5 x 3^1
Factors = (5+1)(1+1) = 6 x 2 = 12

Q7. The place value of 4 in 3,04,759 is:

(a) 4 (b) 400 (c) 4000 (d) 40000

Answer

(c) 4000

In 3,04,759 the digit 4 is in the thousands place.
Place value = 4 x 1000 = 4000

Q8. Which of the following pairs are co-prime?

(a) (12, 18) (b) (15, 25) (c) (16, 21) (d) (14, 35)

Answer

(c) (16, 21)

(12, 18) --> HCF = 6  (not co-prime)
(15, 25) --> HCF = 5  (not co-prime)
(16, 21) --> 16 = 2^4, 21 = 3 x 7, no common factor --> HCF = 1  ✓
(14, 35) --> HCF = 7  (not co-prime)

Q9. The smallest 3-digit number divisible by 8 is:

(a) 100 (b) 104 (c) 108 (d) 112

Answer

(b) 104

Smallest 3-digit number = 100
100 / 8 = 12.5
ceil(12.5) = 13
8 x 13 = 104

Q10. The remainder when 345 is divided by 8 is:

(a) 1 (b) 3 (c) 5 (d) 7

Answer

(a) 1

345 = 8 x 43 + 1
Remainder = 1

Q11. 0 is a:

(a) Natural number (b) Whole number but not a natural number (c) Neither whole nor natural (d) Irrational number

Answer

(b) Whole number but not a natural number

Natural numbers: {1, 2, 3, ...}
Whole numbers: {0, 1, 2, 3, ...}
0 is whole but not natural.

Q12. Sum of all factors of 28 is:

(a) 56 (b) 28 (c) 57 (d) 48

Answer

(a) 56

28 = 2^2 x 7^1
Sum = [(2^3 - 1)/(2-1)] x [(7^2 - 1)/(7-1)]
    = [7/1] x [48/6]
    = 7 x 8 = 56

Note: 28 is a perfect number (sum of proper divisors = 28),
so sum of ALL divisors = 28 + 28 = 56.

Q13. How many even numbers are there between 11 and 61?

(a) 24 (b) 25 (c) 26 (d) 23

Answer

(b) 25

Between 11 and 61 (exclusive): 12 to 60
First even = 12, Last even = 60
Count = (60 - 12)/2 + 1 = 48/2 + 1 = 25

Q14. If a number is divisible by both 4 and 6, it must be divisible by:

(a) 24 (b) 12 (c) 8 (d) 10

Answer

(b) 12

LCM(4, 6) = 12
If a number is divisible by both 4 and 6, it is divisible by their LCM = 12.
Not necessarily by 24: for example, 12 is divisible by 4 and 6 but not by 24.

Q15. Which of these is NOT a perfect square?

(a) 1296 (b) 1764 (c) 1826 (d) 2025

Answer

(c) 1826

1296 = 36^2  ✓
1764 = 42^2  ✓
1826: sqrt(1826) ~ 42.7 (not an integer) --> NOT a perfect square
2025 = 45^2  ✓

Also: 1826 = 2 x 11 x 83 (all exponents are 1, not even) --> not a perfect square.

Medium Level (Q16--Q30)


Q16. The number of factors of 720 is:

(a) 24 (b) 28 (c) 30 (d) 36

Answer

(c) 30

720 = 2^4 x 3^2 x 5^1
Factors = (4+1)(2+1)(1+1) = 5 x 3 x 2 = 30

Q17. The unit digit of 2^2024 + 3^2024 + 7^2024 + 8^2024 is:

(a) 0 (b) 2 (c) 4 (d) 8

Answer

(c) 4

2024 mod 4 = 0, so use the 4th (last) element in each cycle.

2^2024: cycle {2,4,8,6}, position 4 --> unit digit 6
3^2024: cycle {3,9,7,1}, position 4 --> unit digit 1
7^2024: cycle {7,9,3,1}, position 4 --> unit digit 1
8^2024: cycle {8,4,2,6}, position 4 --> unit digit 6

Sum of unit digits = 6 + 1 + 1 + 6 = 14
Unit digit of 14 = 4

Q18. The remainder when 9^99 is divided by 10 is:

(a) 1 (b) 3 (c) 7 (d) 9

Answer

(d) 9

9 mod 10 = -1 mod 10
(-1)^99 = -1
-1 mod 10 = 9

Alternatively: cycle of 9 is {9, 1}, length 2.
99 mod 2 = 1 --> position 1 = 9.

Q19. How many numbers between 1 and 200 (inclusive) are divisible by 3 or 7?

(a) 85 (b) 86 (c) 95 (d) 76

Answer

(a) 85

By inclusion-exclusion:
Divisible by 3:  floor(200/3) = 66
Divisible by 7:  floor(200/7) = 28
Divisible by 21: floor(200/21) = 9

Answer = 66 + 28 - 9 = 85

Q20. The highest power of 2 in 50! is:

(a) 25 (b) 47 (c) 48 (d) 50

Answer

(b) 47

floor(50/2) + floor(50/4) + floor(50/8) + floor(50/16) + floor(50/32)
= 25 + 12 + 6 + 3 + 1
= 47

Q21. Which of the following is divisible by 11?

(a) 123456 (b) 908712 (c) 726352 (d) 524863

Answer

(c) 726352

For 726352:
Positions from left: 7(1) 2(2) 6(3) 3(4) 5(5) 2(6)
Odd-position sum:  7 + 6 + 5 = 18
Even-position sum: 2 + 3 + 2 = 7
Difference = 18 - 7 = 11 --> divisible by 11  ✓

Check (a) 123456: (1+3+5)-(2+4+6) = 9-12 = -3 --> No
Check (b) 908712: (9+8+1)-(0+7+2) = 18-9 = 9 --> No
Check (d) 524863: (5+4+6)-(2+8+3) = 15-13 = 2 --> No

Q22. In how many ways can 360 be expressed as a product of two factors?

(a) 12 (b) 24 (c) 11 (d) 13

Answer

(a) 12

360 = 2^3 x 3^2 x 5^1
Number of factors = (3+1)(2+1)(1+1) = 24
360 is NOT a perfect square (exponent 3 is odd).
Number of ways = 24/2 = 12

Q23. The product of a number with its successor is 420. The number is:

(a) 18 (b) 19 (c) 20 (d) 21

Answer

(c) 20

n(n + 1) = 420
Try n = 20: 20 x 21 = 420  ✓

Q24. How many numbers less than 100 are co-prime to 100?

(a) 36 (b) 40 (c) 44 (d) 48

Answer

(b) 40

100 = 2^2 x 5^2
phi(100) = 100 x (1 - 1/2) x (1 - 1/5)
         = 100 x 1/2 x 4/5
         = 40

Q25. The remainder when 2^256 is divided by 17 is:

(a) 0 (b) 1 (c) 2 (d) 16

Answer

(b) 1

By Fermat's Little Theorem (17 is prime):
2^16 mod 17 = 1

256 = 16 x 16
2^256 = (2^16)^16 = 1^16 = 1

Remainder = 1

Q26. The number of odd factors of 540 is:

(a) 6 (b) 8 (c) 10 (d) 12

Answer

(b) 8

540 = 2^2 x 3^3 x 5^1

Odd factors (ignore the power of 2):
= (3+1)(1+1) = 4 x 2 = 8

Q27. The largest 4-digit number divisible by 88 is:

(a) 9944 (b) 9988 (c) 9856 (d) 9984

Answer

(a) 9944

9999 / 88 = 113.625
floor(113.625) = 113
88 x 113 = 9944

Q28. The remainder when 1! + 2! + 3! + ... + 100! is divided by 10 is:

(a) 3 (b) 1 (c) 7 (d) 0

Answer

(a) 3

For n >= 5, n! contains both 2 and 5 as factors, so n! mod 10 = 0.
Only need: 1! + 2! + 3! + 4! = 1 + 2 + 6 + 24 = 33

33 mod 10 = 3

Q29. The number 89715*3 is divisible by 9. The value of * is:

(a) 0 (b) 3 (c) 6 (d) 9

Answer

(b) 3

Sum of known digits = 8 + 9 + 7 + 1 + 5 + 3 = 33
Total sum = 33 + *

For divisibility by 9: (33 + *) must be a multiple of 9.
Next multiple of 9 after 33 is 36.
* = 36 - 33 = 3

Q30. If N = 2^4 x 3^3 x 5^2, how many factors of N are perfect squares?

(a) 6 (b) 8 (c) 10 (d) 12

Answer

(d) 12

For a factor to be a perfect square, each exponent must be even.

For 2^4: even exponents from 0 to 4 --> {0, 2, 4} --> 3 choices
For 3^3: even exponents from 0 to 3 --> {0, 2}    --> 2 choices
For 5^2: even exponents from 0 to 2 --> {0, 2}    --> 2 choices

Total = 3 x 2 x 2 = 12

Hard Level (Q31--Q42)


Q31. The remainder when 7^(7^7) is divided by 5 is:

(a) 1 (b) 2 (c) 3 (d) 4

Answer

(c) 3

Step 1: 7 mod 5 = 2, so find 2^(7^7) mod 5.

Step 2: Cycle of 2 mod 5: {2, 4, 3, 1}, length = 4.
        Need 7^7 mod 4.

Step 3: 7 mod 4 = 3, so 7^7 mod 4 = 3^7 mod 4.
        3 mod 4 = -1, so (-1)^7 = -1 = 3 mod 4.

Step 4: 2^(7^7) mod 5 = 2^3 mod 5 = 8 mod 5 = 3.

Answer: 3

Q32. How many 3-digit numbers are divisible by 6 but not by 9?

(a) 100 (b) 150 (c) 120 (d) 50

Answer

(a) 100

3-digit multiples of 6:
  First = 102 (6 x 17), Last = 996 (6 x 166)
  Count = 166 - 17 + 1 = 150

3-digit multiples of 18 (divisible by both 6 and 9):
  First = 108 (18 x 6), Last = 990 (18 x 55)
  Count = 55 - 6 + 1 = 50

Divisible by 6 but not 9 = 150 - 50 = 100

Q33. The last two digits of 3^200 are:

(a) 01 (b) 41 (c) 81 (d) 61

Answer

(a) 01

phi(100) = 40
GCD(3, 100) = 1
By Euler's theorem: 3^40 mod 100 = 1

200 = 40 x 5
3^200 = (3^40)^5 mod 100 = 1^5 = 1

Last two digits = 01

Q34. The number of divisors of 10800 that are perfect cubes is:

(a) 2 (b) 4 (c) 6 (d) 8

Answer

(b) 4

10800 = 2^4 x 3^3 x 5^2

For a factor to be a perfect cube, each exponent must be a multiple of 3.

For 2^4: multiples of 3 in {0,1,2,3,4} --> {0, 3} --> 2 choices
For 3^3: multiples of 3 in {0,1,2,3}   --> {0, 3} --> 2 choices
For 5^2: multiples of 3 in {0,1,2}     --> {0}    --> 1 choice

Total = 2 x 2 x 1 = 4

The 4 perfect cube factors: 1, 8, 27, 216

Q35. The remainder when 32^(32^32) is divided by 7 is:

(a) 1 (b) 2 (c) 4 (d) 6

Answer

(c) 4

Step 1: 32 mod 7 = 4. Need 4^(32^32) mod 7.

Step 2: By Fermat (7 is prime): 4^6 mod 7 = 1.
        Need 32^32 mod 6.

Step 3: 32 mod 6 = 2. Need 2^32 mod 6.
        Powers of 2 mod 6: 2^1=2, 2^2=4, 2^3=2, 2^4=4, ...
        Even powers give 4. Since 32 is even: 2^32 mod 6 = 4.

Step 4: 4^4 mod 7 = 256 mod 7 = 4   (since 7 x 36 = 252, 256-252 = 4)

Answer: 4

Q36. How many factors of N = 2^3 x 3^2 x 5^2 are multiples of 30?

(a) 6 (b) 8 (c) 10 (d) 12

Answer

(d) 12

30 = 2 x 3 x 5

A factor of N that is a multiple of 30 must have at least 2^1, 3^1, and 5^1.

Method: Count factors of N/30.
N/30 = (2^3 x 3^2 x 5^2) / (2 x 3 x 5) = 2^2 x 3 x 5

Number of factors of 2^2 x 3 x 5 = (2+1)(1+1)(1+1) = 3 x 2 x 2 = 12

Answer: 12

Q37. What is the remainder when 1! + 2! + 3! + ... + 50! is divided by 7?

(a) 5 (b) 4 (c) 3 (d) 0

Answer

(a) 5

For n >= 7, n! contains 7 as a factor, so n! mod 7 = 0.
We only need: 1! + 2! + 3! + 4! + 5! + 6!
= 1 + 2 + 6 + 24 + 120 + 720
= 873

873 / 7 = 124 remainder 5  (7 x 124 = 868, 873 - 868 = 5)

Answer: 5

Q38. If N = 2^6 x 3^4 x 5^2, the number of factors of N that are perfect squares is:

(a) 12 (b) 18 (c) 24 (d) 8

Answer

(c) 24

For a factor to be a perfect square, each exponent must be even.

2^6: even exponents from 0 to 6 = {0, 2, 4, 6} --> 4 choices
3^4: even exponents from 0 to 4 = {0, 2, 4}    --> 3 choices
5^2: even exponents from 0 to 2 = {0, 2}        --> 2 choices

Total = 4 x 3 x 2 = 24

Q39. The sum of all co-primes of 12 that are less than 12 is:

(a) 24 (b) 20 (c) 16 (d) 12

Answer

(a) 24

Co-primes of 12 less than 12: {1, 5, 7, 11}

Sum = 1 + 5 + 7 + 11 = 24

Formula check: N x phi(N) / 2 = 12 x 4 / 2 = 24  ✓

Q40. How many numbers from 1 to 1000 are neither divisible by 2 nor by 5?

(a) 400 (b) 500 (c) 300 (d) 600

Answer

(a) 400

By inclusion-exclusion:
Divisible by 2: 500
Divisible by 5: 200
Divisible by 10 (both): 100

Divisible by 2 or 5 = 500 + 200 - 100 = 600
Neither = 1000 - 600 = 400

Q41. The remainder when 2^1000 is divided by 13 is:

(a) 1 (b) 3 (c) 9 (d) 12

Answer

(b) 3

By Fermat's Little Theorem: 2^12 mod 13 = 1

1000 = 12 x 83 + 4
2^1000 = (2^12)^83 x 2^4 = 1 x 16

16 mod 13 = 3

Q42. A 6-digit number is formed by repeating a 3-digit number (e.g., 256256, 678678). Any number of this form is always divisible by:

(a) 7 only (b) 11 only (c) 13 only (d) 7, 11, and 13

Answer

(d) 7, 11, and 13

abcabc = abc x 1000 + abc = abc x 1001
1001 = 7 x 11 x 13

So every number of this form is divisible by 7, 11, and 13.

Bonus Questions (Q43--Q45)


Q43. The number 2^29 has 9 digits. The leading (leftmost) digit is:

(a) 5 (b) 4 (c) 3 (d) 2

Answer

(a) 5

2^10 = 1024 ~ 10^3
2^30 = (2^10)^3 ~ (10^3)^3 = 10^9
2^29 = 2^30 / 2 ~ 10^9 / 2 = 5 x 10^8

Exact: 2^29 = 536,870,912 --> leading digit = 5  ✓

Q44. What is the total number of prime factors (with repetition) of 2160?

(a) 4 (b) 7 (c) 8 (d) 9

Answer

(c) 8

2160 = 2^4 x 3^3 x 5^1

Total prime factors with repetition = 4 + 3 + 1 = 8
(Distinct prime factors = 3, but with repetition = 8)

Q45. The remainder when 146 x 150 x 154 x 158 is divided by 13 is:

(a) 7 (b) 8 (c) 11 (d) 12

Answer

(a) 7

146 mod 13: 13 x 11 = 143, remainder = 3
150 mod 13: 13 x 11 = 143, remainder = 7
154 mod 13: 13 x 11 = 143, remainder = 11
158 mod 13: 13 x 12 = 156, remainder = 2

Product mod 13 = (3 x 7 x 11 x 2) mod 13

3 x 7 = 21, 21 mod 13 = 8
8 x 11 = 88, 88 mod 13 = 10  (13 x 6 = 78, 88-78 = 10)
10 x 2 = 20, 20 mod 13 = 7

Answer: 7

Answer Key (Quick Reference)

QAnswerQAnswerQAnswer
1(b) 127516(c) 3031(c) 3
2(c) 9717(c) 432(a) 100
3(b) 318(d) 933(a) 01
4(c) 1919(a) 8534(b) 4
5(c) Both 3 and 520(b) 4735(c) 4
6(b) 1221(c) 72635236(d) 12
7(c) 400022(a) 1237(a) 5
8(c) (16, 21)23(c) 2038(c) 24
9(b) 10424(b) 4039(a) 24
10(a) 125(b) 140(a) 400
11(b) Whole, not natural26(b) 841(b) 3
12(a) 5627(a) 994442(d) 7, 11, 13
13(b) 2528(a) 343(a) 5
14(b) 1229(b) 344(c) 8
15(c) 182630(d) 1245(a) 7