We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3
CHAPTER NAME: DATA REPRESENTATION
MULTIPLE CHOICE QUESTIONS:
1. The value of radix in binary system is … Ans: 2. 2. The value of radix in octal number system is … Ans: 8. 3. The value of radix in decimal number system is Ans: 10. 4. The value of radix in hexadecimal number system is … Ans: 16. 5. Which of the following are not valid symbols in octal number system… Ans: 8, 9. 6. Which of the following are not valid symbols in hexadecimal number system? Ans: G 7. Which of the following are not valid symbols in decimal number system? Ans: G, F 8. The hexadecimal digits are 1 or 0 and A to… Ans: F 9. The binary equivalent of the decimal number 10 is … Ans: 1010 10. ASCII code is a 7 bit code for …………… Ans: letters, numbers, other symbols 11. How many bytes are there in 1011 0110 0110 1110 numbers? Ans: 2 12. The binary equivalent of the octal Number 13.54 is …………… Ans: 1101.1110 13. The octal equivalent of 111 010 is …………… Ans: 72 14. The input hexadecimal representation of 1110 is ………………… Ans: F 15. Which of the following is not a binary number? Ans: 11E 16. Convert the hexadecimal number 2c to decimal: Ans: 44 17. UTF8 is a type of ………….. encoding. Ans: Unicode 18. UTF32 is a type of ………….. encoding. Ans: Unicode 19. Which of the following is not a valid UTF8 representation? Ans: 8 octet (64 bits) 20. Which of the following is not a valid encoding scheme for character? Ans: ESCII FILL IN THE BLANKS 1. The decimal number system is composed of …10 .. unique symbols. 2. The binary number system is composed of …2 ….. unique symbols. 3. The octal number system is composed of ……8…… unique symbols. 4. The hexadecimal number system is composed of …16 .. unique symbols. 5. The illegal digits of octal number system are ……8……. And ……9.. 6. Hexadecimal number system recognized symbols 0 to 9 and A to F….. 7. Each octal number is replaced with…3. Bits in octal to binary conversion. 8. Each hexadecimal number is replaced with 4… bits in hex to binary conversion. 9. ASCII is a …7… bit code while extended ASCII is a 8… bit code. 10. The Unicode. Encoding scheme can represent all symbols/ characters of most language. 11. The …ISCII. Encoding scheme represents Indian languages, characters on computers. 12. UTF8 can take Up to 4 bytes to represents a symbol. 13. UTF32 takes exactly ..4… bytes to represents a symbol. 14. Unicode value of a symbol is called code Point. TRUE FALSE STATEMENTS: 1. A computer can work with Decimal number system. [F] 2. A computer can work with binary number system. [T] 3. The number of unique symbols in Hexadecimal number system is 15. [F] 4. Number system can also represent characters ………. [F] 5. ISCII is an encoding scheme created for Indian language characters. [T] 6. Unicode is able to represent nearly all languages characters. [T] 7. UTF8 is a fixed-length encoding scheme. [F] 8. UTF32 is a fixed-length encoding scheme. [T] 9. UTF8 is a variable-length encoding scheme and can represent characters in 1 thorough 4 bytes.[T] 10. UTF8 and UTF32 are the only encoding schemes supported by Unicode. [F] SHORT TYPE ANSWER TYPE QUESTONS/CONCEPTULA QUESTIONS. 1. What are some number systems used by computers? Ans: Common number systems include Binary (Base 2), Octal (Base 8), Decimal (Base 10), and Hexadecimal (Base 16). 2. What is the use of Hexadecimal number system on computer? Ans: It simplifies the representation of binary numbers, making it easier for humans to read and debug machine-level data. 3. What does radix or base signify? Ans: The radix or base of a number system indicates the number of unique digits (including zero) used to represent numbers. 4. What is the use of encoding schemes? Ans: Encoding schemes are used to represent characters, symbols, and control codes in a standardized format for data storage and communication. Discuss UTF-8 encoding system. 5. Discuss UTF-8 encoding scheme. Ans: UTF-8 is a variable-length encoding scheme that represents Unicode characters using one to four bytes. It is backward-compatible with ASCII. 6. How is UTF-8 encoding scheme different from UTF-32 encoding scheme? Ans: UTF-8 uses variable lengths (1-4 bytes) for encoding characters, while UTF-32 uses a fixed length of 4 bytes for all characters, making UTF-8 more space-efficient. 7. What is the most significant bit and the least significant bit in a binary code? Ans: The most significant bit (MSB) is the leftmost bit and represents the largest value, while the least significant bit (LSB) is the rightmost bit, representing the smallest value. 8. What are ASCII and extended ASCII encoding scheme? Ans: ASCII encodes 128 characters (7-bit), while extended ASCII uses 8 bits to encode 256 characters, including additional symbols and special characters. 9. What is the unity Of ISCII encoding scheme? Ans: ISCII (Indian Script Code for Information Interchange) encodes Indian scripts for computing, allowing support for multiple Indian languages. 10. What is Unicode? What is its significance? Ans: Unicode is a universal character encoding standard designed to support all languages and scripts, ensuring consistent text representation across systems. 11. What all encoding scheme does Unicode use to represent characters? Ans: Unicode uses UTF-8, UTF-16, and UTF-32 to represent characters, allowing for flexibility in storage and transmission. 12. What is ASCII and ISCII? Why are these used? Ans: ASCII is a character encoding scheme for English characters, while ISCII is designed for Indian scripts. Both are used to represent text in computing. 13. What are UTF-8 and UTF-32 encoding system? Which one is more popular encoding scheme? Ans: UTF-8 is a variable-length encoding system, and UTF-32 is a fixed-length system. UTF-8 is more popular due to its space efficiency and backward compatibility with ASCII. 14. What do you understand by code point? Ans: A code point is a numerical value that maps to a specific character in an encoding standard like Unicode. 15. What is the difference between fixed length and variable length encoding schemes? Ans: Fixed-length encoding uses the same number of bits for each character (e.g., UTF-32), while variable-length encoding uses different numbers of bits depending on the character (e.g., UTF-8).