🔥 LIVE 👩‍🏫 Teachers: Host Live Tests  |  🎓 Students: Practice Class-wise Quizzes Go to Quiz Portal ➔

Computer Systems and Organisation Quiz 3

🔢 Computer Systems & Organisation Quiz 3 — Number Systems & Encoding (Class 11 CS)

Practice 20 CBSE Class 11 Computer Science (Code 083) MCQs on number systems — Binary, Octal, Decimal, and Hexadecimal, along with conversions between them — plus encoding schemes: ASCII, ISCII, and Unicode (UTF-8, UTF-32).

Every conversion below has been double-checked by actually computing it — including fixing a few incorrect values found in commonly circulated versions of this quiz. Tap any question to reveal the answer with a full working.

🔢 Number Systems🔁 Conversion🔤 Encoding
Q1
🔢 Number Systems

Which number system uses only two digits, 0 and 1?

  1. Decimal
  2. Octal
  3. Binary
  4. Hexadecimal
Show Answer & Explanation

✅ Answer: (c) Binary

The binary number system is base-2, meaning it uses only two digits — 0 and 1. It’s the native language of computer hardware, where each digit (bit) represents an “off” or “on” state.

Q2
🔢 Number Systems

How many unique digits are there in the octal number system?

  1. 8
  2. 10
  3. 16
  4. 2
Show Answer & Explanation

✅ Answer: (a) 8

Octal is base-8, so it uses exactly 8 unique digits: 0 through 7.

Q3
🔢 Number Systems

What is the base of the decimal number system?

  1. 2
  2. 8
  3. 10
  4. 16
Show Answer & Explanation

✅ Answer: (c) 10

Decimal is the number system we use every day — it’s base-10, using digits 0 through 9.

Q4
🔢 Number Systems

Which number system uses the digits 0-9 and the letters A-F?

  1. Binary
  2. Octal
  3. Decimal
  4. Hexadecimal
Show Answer & Explanation

✅ Answer: (d) Hexadecimal

Hexadecimal is base-16. Since only 10 digit symbols (0-9) exist, it borrows the letters A-F to represent values 10 through 15.

Q5
🔁 Conversion

Convert the binary number 101010 to decimal.

  1. 10
  2. 20
  3. 42
  4. 52
Show Answer & Explanation

✅ Answer: (c) 42

101010₂ = (1×32)+(0×16)+(1×8)+(0×4)+(1×2)+(0×1) = 32+8+2 = 42.

Q6
🔁 Conversion

Convert the octal number 72 to binary.

  1. 101101
  2. 111010
  3. 100110
  4. 110101
Show Answer & Explanation

✅ Answer: (b) 111010

Each octal digit maps to exactly 3 binary bits: 7 → 111, 2 → 010. Combined: 111010. (Note: some circulated answer keys for this question incorrectly mark “101101” — that value is wrong; 111010 is the verified correct conversion.)

Q7
🔁 Conversion

Convert the decimal number 146 to hexadecimal.

  1. 8F
  2. 9B
  3. 92
  4. 7B
Show Answer & Explanation

✅ Answer: (c) 92

146 ÷ 16 = 9 remainder 2, so 146 in hex is 92. (This question is corrected from a version circulating with 147, which doesn’t match any of the given options — 147 in hex is actually 93.)

Q8
🔁 Conversion

Convert the hexadecimal number 2A to binary.

  1. 101010
  2. 101100
  3. 100110
  4. 110010
Show Answer & Explanation

✅ Answer: (a) 101010

2 → 0010, A (=10) → 1010. Combined and trimmed: 101010.

Q9
🔤 Encoding

Which encoding scheme represents characters using 8 bits?

  1. ASCII
  2. ISCII
  3. UTF8
  4. UTF32
Show Answer & Explanation

✅ Answer: (a) ASCII

ASCII (as taught at this level) uses 8 bits per character, allowing 256 possible characters — enough for English letters, digits, and common symbols.

Q10
🔤 Encoding

Which encoding scheme is used to represent characters in most modern computers and supports a wider range of characters and languages?

  1. ASCII
  2. ISCII
  3. UTF8
  4. UTF32
Show Answer & Explanation

✅ Answer: (c) UTF8

UTF-8 is the dominant encoding on the modern web and in most software — it’s backward-compatible with ASCII but can represent virtually any character from any language.

Q11
🔤 Encoding

How many bits are used to represent characters in ASCII encoding?

  1. 8
  2. 16
  3. 32
  4. 64
Show Answer & Explanation

✅ Answer: (a) 8

ASCII characters are represented using 8 bits (1 byte) each.

Q12
🔤 Encoding

What is the full form of ASCII?

  1. American Standard Code for Information Interchange
  2. All Standard Code for Information Interaction
  3. Advanced System Code for Information Interface
  4. Accessible Symbolic Code for Information Identification
Show Answer & Explanation

✅ Answer: (a) American Standard Code for Information Interchange

ASCII stands for American Standard Code for Information Interchange — one of the earliest character-encoding standards, still foundational today.

Q13
🔤 Encoding

Which encoding scheme is commonly used for Indic scripts in India?

  1. ASCII
  2. ISCII
  3. UTF8
  4. UTF32
Show Answer & Explanation

✅ Answer: (b) ISCII

ISCII (Indian Script Code for Information Interchange) was specifically developed to represent Indian language scripts like Devanagari, Tamil, and Bengali.

Q14
🔤 Encoding

Which encoding scheme is capable of representing over one million characters?

  1. ASCII
  2. ISCII
  3. UTF8
  4. UTF32
Show Answer & Explanation

✅ Answer: (c) UTF8

UTF-8, as a Unicode encoding, can represent the entire Unicode character set — over 1.1 million possible code points, covering virtually every writing system in use today. (UTF-32 encodes the same Unicode repertoire too, but UTF-8 is the standard answer taught for this property since it’s the most widely deployed.)

Q15
🔁 Conversion

Convert the ASCII character ‘A’ to binary (in 8-bit ASCII encoding).

  1. 01000001
  2. 1000001
  3. 10000001
  4. 00100001
Show Answer & Explanation

✅ Answer: (a) 01000001

‘A’ has ASCII value 65. In 8-bit binary, 65 = 01000001.

Q16
🔁 Conversion

Convert the binary number 1000101 to its ASCII character (in 8-bit ASCII encoding).

  1. A
  2. B
  3. C
  4. E
Show Answer & Explanation

✅ Answer: (d) E

1000101₂ = 69 in decimal, and ASCII value 69 corresponds to the character ‘E’. (Corrected from a widely circulated version of this question using “1100101”, which actually converts to 101 = lowercase ‘e’ — not among any of the given options.)

Q17
🔤 Encoding

Which encoding scheme is the most comprehensive and can represent characters from almost all writing systems?

  1. ASCII
  2. ISCII
  3. UTF8
  4. UTF32
Show Answer & Explanation

✅ Answer: (c) UTF8

UTF-8 is generally considered the most comprehensive and widely adopted encoding for representing text from virtually every writing system in the world, since it fully implements the Unicode standard.

Q18
🔤 Encoding

Which encoding scheme is fixed-width and uses 32 bits to represent each character?

  1. ASCII
  2. ISCII
  3. UTF8
  4. UTF32
Show Answer & Explanation

✅ Answer: (d) UTF32

UTF-32 is fixed-width — every single character, regardless of complexity, is always stored using exactly 32 bits (4 bytes). This makes indexing simple but uses more memory than UTF-8.

Q19
🔁 Conversion

Convert the hexadecimal number CD to binary.

  1. 11111011
  2. 11111010
  3. 11001101
  4. 10011011
Show Answer & Explanation

✅ Answer: (c) 11001101

C (=12) → 1100, D (=13) → 1101. Combined: 11001101. (Corrected from a version of this question using “1F5”, which needs 9 bits and doesn’t match any 8-bit option given.)

Q20
🔁 Conversion

Convert the decimal number 58 to octal.

  1. 62
  2. 66
  3. 72
  4. 76
Show Answer & Explanation

✅ Answer: (c) 72

58 ÷ 8 = 7 remainder 2, so 58 in octal is 72.

Jitendra Singh
✔ Verified Educator

Jitendra Singh

Founder of CBSEPython.in

I help CBSE Class 9–12 students learn Python, Information Technology, Artificial Intelligence and Computer Science through easy notes, quizzes, MCQs and sample papers.

Read More About Me →