Encoding Schemes and Number System
Manipur Board · Class 11 · Computer Science
NCERT Solutions for Encoding Schemes and Number System — Manipur Board Class 11 Computer Science.
Interactive on Super Tutor
Studying Encoding Schemes and Number System? Get the full interactive chapter.
Quizzes, flashcards, AI doubt-solver and a step-by-step study plan — built for ncert solutions and more.
1,000+ Class 11 students started this chapter today
EXERCISE — Encoding Schemes and Number System
1Write base values of binary, octal and hexadecimal number system.Show solution
| Number System | Symbols Used | Base Value |
|---|---|---|
| Binary | 0, 1 | 2 |
| Octal | 0, 1, 2, 3, 4, 5, 6, 7 | 8 |
| Hexadecimal | 0–9, A, B, C, D, E, F | 16 |
- Binary base = 2
- Octal base = 8
- Hexadecimal base = 16
2Give full form of ASCII and ISCII.Show solution
ISCII — Indian Script Code for Information Interchange
ASCII is a 7-bit (or 8-bit extended) encoding scheme used to represent English characters and control characters. ISCII is an 8-bit encoding scheme developed to represent characters of Indian scripts.
3Try the following conversions.
(i)
(ii)
(iii)
(iv)
(v)
(vi) Show solution
Formula: Multiply each digit by its positional power of 8.
---
(ii)
Method: Replace each octal digit with its 3-bit binary equivalent.
---
(iii)
Note:
---
(iv)
Note:
---
(v)
Assign positional values (right to left, starting from ):
---
(vi)
4Do the following conversions from decimal number to other number systems.
(i)
(ii)
(iii)
(iv)
(v)
(vi) Show solution
Method: Repeated division by 2, read remainders bottom to top.
Reading remainders from bottom to top:
---
(ii)
Reading bottom to top:
---
(iii)
Method: Repeated division by 8.
Reading bottom to top:
---
(iv)
Reading bottom to top:
---
(v)
Method: Repeated division by 16.
Reading bottom to top:
---
(vi)
Reading bottom to top:
5Express the following octal numbers into their equivalent decimal numbers.
(i) 145 (ii) 6760 (iii) 455 (iv) 10.75Show solution
---
(ii)
---
(iii)
---
(iv)
Integer part:
Fractional part:
6Express the following decimal numbers into hexadecimal numbers.
(i) 548 (ii) 4052 (iii) 58 (iv) 100.25Show solution
Reading bottom to top:
---
(ii)
Reading bottom to top:
---
(iii)
Reading bottom to top:
---
(iv)
Integer part (100):
Integer part in hex =
Fractional part (0.25):
Fractional part in hex =
7Express the following hexadecimal numbers into equivalent decimal numbers.
(i) 4A2 (ii) 9E1A (iii) 6BD (iv) 6C.34Show solution
---
(ii)
---
(iii)
---
(iv)
Integer part:
Fractional part:
8Convert the following binary numbers into octal and hexadecimal numbers.
(i) 1110001000 (ii) 110110101 (iii) 1010100 (iv) 1010.1001Show solution
Method for Hexadecimal: Group bits in sets of 4 from right (for integer part) and from left (for fractional part). Replace each group with its hex digit.
---
(i)
To Octal (groups of 3):
To Hexadecimal (groups of 4):
---
(ii)
To Octal (groups of 3):
To Hexadecimal (groups of 4):
---
(iii)
To Octal (groups of 3):
To Hexadecimal (groups of 4):
---
(iv)
To Octal:
Integer:
Fractional: (pad right with zeros)
To Hexadecimal:
Integer:
Fractional:
9Write binary equivalent of the following octal numbers.
(i) 2306 (ii) 5610 (iii) 742 (iv) 65.203Show solution
Octal–Binary table:
| Octal | Binary |
|---|---|
| 0 | 000 |
| 1 | 001 |
| 2 | 010 |
| 3 | 011 |
| 4 | 100 |
| 5 | 101 |
| 6 | 110 |
| 7 | 111 |
---
(i)
---
(ii)
---
(iii)
---
(iv)
10Write binary representation of the following hexadecimal numbers.
(i) 4026 (ii) BCA1 (iii) 98E (iv) 132.45Show solution
Key hex–binary values:
---
(i)
---
(ii)
---
(iii)
---
(iv)
11How does computer understand the following text? (hint: 7 bit ASCII code).
(i) HOTS (ii) Main (iii) CaSeShow solution
Standard ASCII decimal values (selected):
- A=65, B=66, C=67, D=68, E=69, F=70, G=71, H=72, I=73, J=74, K=75, L=76, M=77, N=78, O=79, P=80, Q=81, R=82, S=83, T=84, U=85, V=86, W=87, X=88, Y=89, Z=90
- a=97, e=101, i=105, m=109, n=110, s=115
---
(i) HOTS
| Character | ASCII (Decimal) | 7-bit Binary |
|---|---|---|
| H | 72 | 1001000 |
| O | 79 | 1001111 |
| T | 84 | 1010100 |
| S | 83 | 1010011 |
The computer understands HOTS as: `1001000 1001111 1010100 1010011`
---
(ii) Main
| Character | ASCII (Decimal) | 7-bit Binary |
|---|---|---|
| M | 77 | 1001101 |
| a | 97 | 1100001 |
| i | 105 | 1101001 |
| n | 110 | 1101110 |
The computer understands Main as: `1001101 1100001 1101001 1101110`
---
(iii) CaSe
| Character | ASCII (Decimal) | 7-bit Binary |
|---|---|---|
| C | 67 | 1000011 |
| a | 97 | 1100001 |
| S | 83 | 1010011 |
| e | 101 | 1100101 |
The computer understands CaSe as: `1000011 1100001 1010011 1100101`
Note: Uppercase and lowercase letters have different ASCII codes, so the computer treats 'C' and 'c' as different characters.
12The hexadecimal number system uses 16 literals (0-9, A-F). Write down its base value.Show solution
Concept: The base (radix) of a number system = total number of unique symbols used.
Therefore, the base value of the hexadecimal number system is .
13Let X be a number system having B symbols only. Write down the base value of this number system.Show solution
Concept: The base (radix) of any number system is equal to the total count of distinct symbols (digits/literals) it uses.
For example:
- If (symbols: 0, 1) → Binary system with base 2
- If (symbols: 0–7) → Octal system with base 8
- If (symbols: 0–9, A–F) → Hexadecimal system with base 16
Therefore, the base value of number system X is .
14Write the equivalent hexadecimal and binary values for each character of the phrase given below.
"हम सब एक"Show solution
The Unicode (hexadecimal) code points for Devanagari characters are in the range U+0900 to U+097F.
| Character | Unicode Code Point (Hex) | Binary (16-bit) |
|---|---|---|
| ह | U+0939 | 0000 1001 0011 1001 |
| म | U+092E | 0000 1001 0010 1110 |
| (space) | U+0020 | 0000 0000 0010 0000 |
| स | U+0938 | 0000 1001 0011 1000 |
| ब | U+092C | 0000 1001 0010 1100 |
| (space) | U+0020 | 0000 0000 0010 0000 |
| ए | U+090F | 0000 1001 0000 1111 |
| क | U+0915 | 0000 1001 0001 0101 |
Each Devanagari character is represented by its Unicode code point in hexadecimal, and the corresponding 16-bit binary value is obtained by converting that hex value to binary.
15What is the advantage of preparing a digital content in Indian language using UNICODE font?Show solution
1. Universal Compatibility: Unicode is a universal encoding standard. Content created using Unicode can be read and displayed correctly on any device, operating system, or platform (Windows, Mac, Linux, Android, iOS) without any special font installation.
2. Web and Internet Support: Unicode-encoded Indian language content is fully supported by web browsers, search engines, and the internet. It can be indexed and searched by search engines like Google.
3. Interoperability: Unicode allows seamless exchange of Indian language documents between different applications (MS Word, Google Docs, email clients, etc.) without encoding errors or garbled text.
4. Single Standard for All Scripts: Unicode supports all Indian scripts (Devanagari, Tamil, Telugu, Bengali, Gujarati, etc.) under one standard, making it easy to create multilingual documents.
5. Long-term Preservation: Since Unicode is an internationally accepted standard, digital content created in Unicode will remain accessible and readable in the future.
6. No Dependency on Specific Fonts: Unlike older encoding schemes (like ISCII-based fonts), Unicode content does not require the recipient to have a specific font installed to read the text correctly.
7. Software Support: All modern software applications, databases, and programming languages support Unicode, making it easy to process, store, and retrieve Indian language content.
16Explore and list the steps required to type in an Indian language using UNICODE.Show solution
Step 1: Add the Indian Language Input Method
- Go to Control Panel → Clock, Language, and Region → Language.
- Click Add a language and select the desired Indian language (e.g., Hindi).
- Click Add to install the language pack.
Step 2: Enable the Keyboard Layout
- After adding the language, click on Options next to the language.
- Add an Input Method (keyboard layout), such as Devanagari – INSCRIPT or Hindi Phonetic keyboard.
Step 3: Switch the Input Language
- Use the Language Bar on the taskbar (or press Windows key + Space / Alt + Shift) to switch between English and the Indian language input.
Step 4: Open a Unicode-Compatible Application
- Open any Unicode-compatible application such as Notepad, MS Word, or a web browser.
- Ensure the font selected supports the Indian script (e.g., Mangal, Nirmala UI for Hindi/Devanagari).
Step 5: Start Typing
- With the Indian language input method active, start typing. The keys will produce the corresponding Indian script characters encoded in Unicode.
- For phonetic keyboards, type the Roman transliteration and the software converts it to the Indian script.
Step 6: Using Online Tools (Alternative)
- Alternatively, use online Unicode typing tools such as Google Input Tools or Quillpad, which allow phonetic typing and produce Unicode output.
Note: On modern systems (Windows 10/11, macOS, Linux), Unicode support for Indian languages is built-in and the above steps may vary slightly depending on the OS version.
17Encode the word 'COMPUTER' using ASCII and convert the encode value into binary values.Show solution
Concept: Each character is assigned a unique 7-bit ASCII decimal value. We then convert each decimal value to its 7-bit binary equivalent.
| Character | ASCII Decimal Value | 7-bit Binary |
|---|---|---|
| C | 67 | 1000011 |
| O | 79 | 1001111 |
| M | 77 | 1001101 |
| P | 80 | 1010000 |
| U | 85 | 1010101 |
| T | 84 | 1010100 |
| E | 69 | 1000101 |
| R | 82 | 1010010 |
Verification of a few conversions:
- :
- :
- :
Result:
The word COMPUTER is encoded in ASCII and binary as:
Stuck on a step?
Ask Super Tutor AI to explain any solution on this page in a simpler way — free, 24x7.
Ask a Doubt FreeFrequently Asked Questions
What are the important topics in Encoding Schemes and Number System for Manipur Board Class 11 Computer Science?
How to score full marks in Encoding Schemes and Number System — Manipur Board Class 11 Computer Science?
Where can I get free NCERT Solutions for Encoding Schemes and Number System Class 11 Computer Science?
Sources & Official References
Content is aligned to the official syllabus. Refer to the board website for the latest curriculum.
More resources for Encoding Schemes and Number System
Important Questions
Practice with board exam-style questions
Syllabus
What topics to cover
Revision Notes
Key points for last-minute revision
Study Plan
Step-by-step plan to ace this chapter
Flashcards
Quick-fire cards for active recall
Formula Sheet
All formulas in one place
Chapter Summary
Understand the chapter at a glance
Practice Quiz
Test yourself with a quick quiz
Concept Maps
See how topics connect visually
For serious students
Get the full Encoding Schemes and Number System chapter — for free.
Quizzes, flashcards, AI doubt-solver and a step-by-step study plan for Manipur Board Class 11 Computer Science.