I PUC Chapter 2 Notes
I PUC Chapter 2 Notes
VSA SA LA E TOTAL
1 MARK 2 MARKS 3 MARKS 5 MARKS
1 MCQ --- 1 1 09 MARKS
4. What is the hexadecimal equivalent of the binary number (1010 1100 . 0101
PRIMUS PU COLLEGE, BANGALORE
1100)2?
- A. AC.5C
- B. B4.3E
- C. A2.C5
- D. D8.7F
- Answer: A. AC.5C
5. Which standard encoding scheme was developed in India during the mid-
1980s?
- A. ASCII
- B. ISCII
- C. UNICODE
- D. UTF-8
- Answer: B. ISCII
6. What is the binary representation of the ASCII code for the character 'A'?
2
- A. 1000001
- B. 1010100
- C. 1100001
- D. 1110001
- Answer: A. 1000001
7. How many different characters can be encoded using 7-bit ASCII code?
- A. 64
- B. 128
- D. 1110110
- Answer: C. 1111010
4
13. Which encoding scheme is known for representing text in Indian languages?
- A. ASCII
- B. ISCII
- C. UNICODE
- D. UTF-8
- Answer: B. ISCII
16. Which encoding scheme retains all 128 ASCII codes and uses the rest for
additional characters?
- A. ASCII
- B. ISCII
- C. UNICODE 5
- D. UTF-8
- Answer: B. ISCII
- Answer: A. (FF,00,00)
18. What is the binary equivalent of the ASCII value for the character 'D'?
- A. 1000100
- B. 1010001
- C. 1100001
- D. 1110100
- Answer: A. 1000100
- B. 8
- C. 10
- D. 16
- Answer: C. 10
24. Which encoding scheme provides a unique number for every character,
irrespective of the device or operating system?
- A. ASCII
- B. ISCII
PRIMUS PU COLLEGE, BANGALORE
- C. UNICODE
- D. UTF-8
- Answer: C. UNICODE
9
31. How many characters can be represented using an 8-bit encoding scheme?
- A. 128
- B. 256
- C. 512
- D. 1024
- Answer: B. 256
34. Which encoding scheme is used to represent more characters beyond the
basic ASCII set?
- A. UTF-8
- B. ISCII
10 - C. UNICODE
- D. EBCDIC
- Answer: C. UNICODE
37. How many different characters can be represented using 8-bit encoding?
- A. 128
- B. 256
- C. 512
- D. 1024
- Answer: B. 256
11
38. What is the full form of UNICODE?
- A. Universal Code for Information Interchange
- B. Uniform Code for Information Interchange
- C. Unified Code for Information Interchange
- D. None of the above
- Answer: C. Unified Code for Information Interchange
- C. Octal
- D. Hexadecimal
- Answer: D. Hexadecimal
44. What is the binary equivalent of the ASCII value for the character 'C'?
- A. 1000011
- B. 1000100
- C. 1000111
- D. 1001000
- Answer: A. 1000011
- A. DAB
- B. DBA
- C. DBB
- D. DAA
- Answer: A. DAB
- C. 24 bits
- D. 32 bits
- Answer: D. 32 bits
1. What is encoding?
o Encoding is the mechanism of converting data into an equivalent cipher
using a specific code.
2. Explain the significance of the code value 65 for the key "A."
o The code value 65 is used for the key "A" due to standard encoding
schemes like ASCII, where each letter, numeral, and symbol is assigned
a unique code. This standardization allows for consistency across 15
different keyboards.
3. Define ASCII.
o ASCII (American Standard Code for Information Interchange) is an
encoding scheme developed in the early 1960s to standardize character
representation so that computers could communicate with each other.
Initially, it used 7 bits to represent characters, allowing for 128 different
characters.
4. How many bits does ASCII use to represent characters?
o ASCII initially used 7 bits to represent characters.
5. How is the ASCII value of the key 'A' represented in binary?
o The ASCII value of the key 'A' is 65, which is represented in binary as
PRIMUS PU COLLEGE, BANGALORE
1000001.
6. What is ISCII?
o ISCII (Indian Script Code for Information Interchange) is an 8-bit code
representation for Indian languages, developed in the mid-1980s in
India. It retains all 128 ASCII codes and uses the rest of the codes for
additional Indian language character sets.
7. How many bits does ISCII use to represent characters?
o ISCII uses 8 bits to represent characters.
8. Why was the Unicode standard developed?
o The Unicode standard was developed to incorporate all the characters
of every written language in the world, allowing for text created using
one encoding scheme to be recognized by machines using different
encoding schemes.
9. What is the range of values for the Unicode encoding scheme?
o Unicode is a superset of ASCII, and the values 0–128 have the same
characters as in ASCII. The Unicode range is extensive and includes all
systems.
▪ Compatibility: Compatible with earlier encoding schemes like
ASCII.
▪ Flexibility: Provides multiple encoding forms (e.g., UTF-8,
UTF-16) to suit different applications and storage requirements.
9. Describe the process of converting a decimal number to binary.
o The process of converting a decimal number to binary involves
repeatedly dividing the decimal number by 2 and recording the
remainder. This process is continued until the quotient is zero. The
binary equivalent is obtained by reading the remainders in reverse order.
For example, to convert the decimal number 65 to binary:
▪ 65 ÷ 2 = 32 remainder 1
▪ 32 ÷ 2 = 16 remainder 0
▪ 16 ÷ 2 = 8 remainder 0
▪ 8 ÷ 2 = 4 remainder 0
▪ 4 ÷ 2 = 2 remainder 0
▪ 2 ÷ 2 = 1 remainder 0
20
▪ 1 ÷ 2 = 0 remainder 1
▪ Reading the remainders in reverse order gives 100000.
10. What are the different number systems mentioned in the document?
o The document mentions several number systems, including:
▪ Decimal (Base 10): Uses digits 0-9.
▪ Binary (Base 2): Uses digits 0 and 1.
▪ Octal (Base 8): Uses digits 0-7.
▪ Hexadecimal (Base 16): Uses digits 0-9 and letters A-F.
11. How does Unicode support multiple languages?
o Unicode supports multiple languages by providing a unique code for
every character in each written language. This comprehensive encoding
24