Number System Questions

Multiple choice
  1. 12

  2. 14

  3. 16

  4. 20

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Subtract remainder from both numbers: 245-5 = 240 and 1029-5 = 1024. Find GCD of 240 and 1024. 240 = 16 × 15, 1024 = 16 × 64. GCD is 16. Verification: 240/16 = 15 remainder 0, 1024/16 = 64 remainder 0. 12 doesn't divide 1024, 14 doesn't divide 240 evenly, 20 is not the GCD.

Multiple choice
  1. 111

  2. 112

  3. 113

  4. 132

  5. 134

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

If 2270, 3739, and 6677 all give same remainder r when divided by d, then: (3739-2270) = 1469, (6677-3739) = 2938, (6677-2270) = 4407. All differences must be divisible by d. Finding GCD: 2938 = 2 × 1469, 4407 = 3 × 1469. So d must divide 1469. 1469 = 13 × 113. Checking options: 113 is a three-digit divisor and 1469 is divisible by it.

Multiple choice
  1. 845

  2. 407

  3. 650

  4. 910

  5. 1040

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Number giving remainder 5 when divided by 8, 10, 12 is LCM(8,10,12) × k + 5 = 120k + 5. For divisibility by 13: 120k + 5 ≡ 0 (mod 13), so 120k ≡ 8 (mod 13). 120 ≡ 3 (mod 13), so 3k ≡ 8 (mod 13). Testing k = 7: 3×7 = 21 ≡ 8 (mod 13). Number = 120×7 + 5 = 845. Check: 845 ÷ 13 = 65 exactly.

Multiple choice
  1. 201

  2. 8

  3. 3

  4. 0

  5. 245

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Working backwards from the successive divisions: if a number leaves remainder 4 when divided by 8, that quotient leaves remainder 5 when divided by 7, and that quotient leaves remainder 3 when divided by 6, the least such number is 201. When 201 is divided successively by 8, 7, 6: 201 ÷ 8 = 25 remainder 1, 25 ÷ 7 = 3 remainder 4, 3 ÷ 6 = 0 remainder 3. The final remainder is 3.

Multiple choice
  1. 20

  2. 15

  3. 12

  4. 10

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

To find the largest number that divides 61, 72, and 83 leaving remainders 1, 2, and 3 respectively, we need to find the HCF of (61-1)=60, (72-2)=70, and (83-3)=80. HCF of 60, 70, and 80 is 10. Options A (20), B (15), and C (12) do not divide all three numbers evenly.

Multiple choice
  1. 25

  2. 50

  3. 75

  4. 76

  5. None of these

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

If remainders are equal, the differences between numbers must be divisible by the divisor. Differences: 151-76=75, 226-151=75, 226-76=150. The HCF of these differences is 75. Checking: 76÷75 leaves remainder 1, 151÷75 leaves remainder 1, 226÷75 leaves remainder 1. All remainders equal.

Multiple choice
  1. 189

  2. 113

  3. 115

  4. 137

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

If remainders are equal, the divisor divides differences: 6677-3739=2938, 3739-2270=1469, 6677-2270=4407. GCD(2938,1469,4407)=1469. So divisor is a 3-digit factor of 1469. 1469=17×7×13. Checking options: only 113 gives remainder 6 with all three numbers.

Multiple choice
  1. 32

  2. 18

  3. 34

  4. 12

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Using successive division: N = 4a + 2, a = 5b + 3, b = 6c + 4. Working backwards: b = 6c + 4, a = 5(6c + 4) + 3 = 30c + 23, N = 4(30c + 23) + 2 = 120c + 94. When N is divided by 60, N = 60(2c) + 34, remainder = 34. Alternatively, use Chinese remainder theorem or direct substitution.

Multiple choice
  1. 47

  2. 43

  3. 37

  4. 34

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

When a number d leaves the same remainder when dividing a, b, and c, then d divides the differences: (a-b), (b-c), (a-c). Find GCD of these differences. Here: |392-486|=94, |486-627|=141, |392-627|=235. GCD(94,141,235)=47 since 94=2×47, 141=3×47, 235=5×47.

Multiple choice
  1. 50

  2. 75

  3. 65

  4. 100

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

HCF = 15, LCM = 20 × 15 = 300. Quotient of LCM/HCF = 300/15 = 20. First number = 4 × (20 - 5) = 4 × 15 = 60. For any two numbers, Product = HCF × LCM. So 60 × other = 15 × 300 = 4500. Therefore other = 4500/60 = 75.

Multiple choice
  1. 123

  2. 603

  3. 723

  4. 243

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Number leaves remainder 3 when divided by 5, 6, or 8, so it equals LCM(5,6,8)×k + 3 = 120k + 3. It must also be divisible by 9. Testing values: 123 (k=1) not divisible by 9; 243 (k=2) = 243, which is divisible by 9 (2+4+3=9). Verify: 243 ÷ 5 = 48 rem 3, 243 ÷ 6 = 40 rem 3, 243 ÷ 8 = 30 rem 3, 243 ÷ 9 = 27 rem 0.