Day 8 – Chapter 2: Conversion of Number Systems
Class 11 Computer Science
2.6 Introduction to Number System Conversion (संख्या प्रणाली रूपांतरण का परिचय)
Number system conversion is the process of changing numbers from one base to another. It plays a crucial role in computer science as it allows representation and processing of data in formats understandable by both computers and humans.
संख्या प्रणाली रूपांतरण संख्याओं को एक आधार से दूसरे आधार में बदलने की प्रक्रिया है। यह कंप्यूटर विज्ञान में महत्वपूर्ण भूमिका निभाता है क्योंकि यह डेटा को कंप्यूटर और मनुष्यों दोनों के लिए समझने योग्य प्रारूप में प्रस्तुत और प्रोसेस करता है।
2.7 Types of Conversions (रूपांतरण के प्रकार)
2.7.1 Binary to Decimal Conversion (बाइनरी से दशमलव रूपांतरण)
Multiply each binary digit by 2 raised to its position (starting at 0 on the right) and sum the results.
प्रत्येक बाइनरी अंक को 2 की स्थिति की शक्ति से गुणा करें (दाएं से 0 से शुरू) और परिणामों को जोड़ें।
- Example: 10112 = (1×2³) + (0×2²) + (1×2¹) + (1×2⁰) = 1110
2.7.2 Decimal to Binary Conversion (दशमलव से बाइनरी रूपांतरण)
Divide the decimal number by 2 repeatedly. The remainders, read in reverse, form the binary number.
दशमलव संख्या को बार-बार 2 से विभाजित करें। शेष को उल्टे क्रम में पढ़ने पर बाइनरी संख्या बनती है।
- Example: 1310 ÷ 2 → Remainders: 1, 0, 1, 1 = 11012
2.7.3 Binary to Octal Conversion (बाइनरी से आठाधारी रूपांतरण)
Group binary digits in sets of three, starting from the right. Add leading zeros if necessary.
बाइनरी अंकों को तीन के समूहों में विभाजित करें। आवश्यक होने पर अग्रणी शून्य जोड़ें।
- Example: 1101012 = 110 101 = 658
2.7.4 Binary to Hexadecimal Conversion (बाइनरी से षोडशाधारी रूपांतरण)
Group binary digits in sets of four. Add leading zeros if required. Replace each group with its hexadecimal equivalent.
बाइनरी अंकों को चार के समूहों में विभाजित करें। आवश्यक होने पर अग्रणी शून्य जोड़ें। प्रत्येक समूह को उसके षोडशाधारी समकक्ष से बदलें।
- Example: 1110112 = 0011 1011 = 3B16
Practice Questions (अभ्यास प्रश्न)
Multiple Choice Questions (MCQs)
- What is the decimal equivalent of 10102?
(a) 10 | (b) 12 | (c) 8 | (d) 15 - Convert 2310 to binary.
(a) 101112 | (b) 111002 | (c) 110112 | (d) 101012 - What is the octal equivalent of 1100112?
(a) 638 | (b) 568 | (c) 738 | (d) 658 - Convert 10112 to hexadecimal.
(a) B16 | (b) 1116 | (c) C16 | (d) A16 - Which method converts decimal to binary?
(a) Subtraction | (b) Division | (c) Multiplication | (d) Grouping - What is the binary equivalent of 4510?
(a) 101102 | (b) 1011012 | (c) 1001012 | (d) 111112 - Convert 2710 to binary.
(a) 111012 | (b) 110112 | (c) 101102 | (d) 111102 - What is the hexadecimal representation of 1101102?
(a) 3616 | (b) 3B16 | (c) D16 | (d) 6D16 - What is the binary representation of 710?
(a) 1002 | (b) 1112 | (c) 1012 | (d) 1102 - Convert 1610 to binary.
(a) 100002 | (b) 111002 | (c) 110002 | (d) 101002
Answers to MCQs:
1: (a), 2: (c), 3: (d), 4: (a), 5: (b), 6: (b), 7: (b), 8: (c), 9: (b), 10: (a)
Short Answer Questions (लघु उत्तरीय प्रश्न)
- Define number system conversion.
Answer: Converting a number from one base to another, such as binary to decimal. - Convert 1410 to binary.
Answer: 11102. - What is the hexadecimal equivalent of 11012?
Answer: D16. - Explain binary to octal conversion.
Answer: Group binary digits in threes and replace with octal equivalents. - Convert 4510 to binary.
Answer: 1011012.
Long Answer Questions (दीर्घ उत्तरीय प्रश्न)
- Explain Binary to Decimal and Decimal to Binary conversions with examples.
- Discuss the importance of number system conversions in computer science with examples.
- Describe Binary to Octal and Binary to Hexadecimal conversions in detail with examples.
Post a Comment