Class 11-12

Class 11 Computer Science

BSEB 100-Day Study Plan
Notes, MCQs, and Solutions

Explore Class 11

Class 12 Computer Science

Advanced Topics & Practical Guide
Board Exam Preparation

Explore Class 12

Day 7: Binary Arithmetic – Addition, Subtraction, Multiplication, and Division | Class 11

Learn Binary Arithmetic in Day 7 of Class 11. Master addition, subtraction, multiplication, and division of binary numbers with examples.

Day 7 – Chapter 2: Binary Arithmetic

Class 11 Computer Science

2.4 Introduction to Binary Arithmetic (बाइनरी अंकगणित का परिचय)

Binary arithmetic is a fundamental operation in computer systems, performed using binary numbers. Computers rely on binary operations for data processing.
बाइनरी अंकगणित कंप्यूटर प्रणालियों में मौलिक संचालन है, जो बाइनरी संख्याओं का उपयोग करके किया जाता है। कंप्यूटर डेटा प्रोसेसिंग के लिए बाइनरी संचालन पर निर्भर करते हैं।

2.5 Operations in Binary Arithmetic (बाइनरी अंकगणित में संचालन)

2.5.1 Binary Addition (बाइनरी जोड़)

Binary addition is performed like decimal addition, with a carryover when the sum exceeds 1.
बाइनरी जोड़ दशमलव जोड़ की तरह किया जाता है, जिसमें योग 1 से अधिक होने पर कैरीओवर होता है।

  • Rules:
    • 0 + 0 = 0
    • 0 + 1 = 1
    • 1 + 0 = 1
    • 1 + 1 = 10 (carry 1)
  • Example: 1012 + 1102 = 10112

2.5.2 Binary Subtraction (बाइनरी घटाव)

Binary subtraction involves borrowing, similar to decimal subtraction.
बाइनरी घटाव उधार लेने पर आधारित होता है, जो दशमलव घटाव के समान है।

  • Rules:
    • 0 - 0 = 0
    • 1 - 0 = 1
    • 1 - 1 = 0
    • 0 - 1 = 1 (borrow 1)
  • Example: 11012 - 1012 = 10002

2.5.3 Binary Multiplication (बाइनरी गुणा)

Binary multiplication is performed using repeated addition or the AND operation.
बाइनरी गुणा पुनरावृत्त जोड़ या AND ऑपरेशन का उपयोग करके किया जाता है।

  • Rules:
    • 0 × 0 = 0
    • 0 × 1 = 0
    • 1 × 0 = 0
    • 1 × 1 = 1
  • Example: 1012 × 112 = 11112

2.5.4 Binary Division (बाइनरी भाग)

Binary division follows the rules of long division in the decimal system.
बाइनरी भाग दशमलव प्रणाली में दीर्घ भाग के नियमों का पालन करता है।

  • Example: 1102 ÷ 102 = 112 (Quotient) and 02 (Remainder)

Practice Questions (अभ्यास प्रश्न)

Multiple Choice Questions (MCQs)

  1. What is the sum of 1012 + 112?
    (a) 1112 | (b) 10002 | (c) 1102 | (d) 10112
  2. What is 11012 - 1012?
    (a) 1002 | (b) 10102 | (c) 10002 | (d) 1112
  3. What is the binary product of 1012 × 102?
    (a) 1012 | (b) 10102 | (c) 1112 | (d) 10012
  4. What is the quotient of 1112 ÷ 112?
    (a) 12 | (b) 112 | (c) 1012 | (d) 102
  5. What is 10102 + 1102?
    (a) 100002 | (b) 11102 | (c) 10012 | (d) 10112
  6. What is 10112 - 1012?
    (a) 10012 | (b) 1012 | (c) 1112 | (d) 1102
  7. What is the binary equivalent of 7?
    (a) 1112 | (b) 1012 | (c) 112 | (d) 1002
  8. What is the product of 112 × 112?
    (a) 1012 | (b) 1112 | (c) 10012 | (d) 1102
  9. What is the binary addition result of 1112 + 1112?
    (a) 10102 | (b) 11102 | (c) 11012 | (d) 10112
  10. Which operation involves borrowing in binary arithmetic?
    (a) Addition | (b) Subtraction | (c) Multiplication | (d) Division

Answers to MCQs:

1: (a), 2: (c), 3: (b), 4: (d), 5: (b), 6: (c), 7: (a), 8: (c), 9: (b), 10: (b)

Short Answer Questions (लघु उत्तरीय प्रश्न)

  1. Define binary addition. Provide an example.
    Answer: Binary addition is the process of adding binary numbers. Example: 1012 + 112 = 10002.
  2. Explain binary subtraction with an example.
    Answer: Binary subtraction is the process of subtracting binary numbers. Example: 11012 - 1012 = 10002.
  3. What is the product of 1012 × 112?
    Answer: 11112.
  4. How does binary division differ from decimal division?
    Answer: Binary division operates on binary numbers using repeated subtraction and shifting, unlike decimal division which uses base 10.
  5. Why is binary arithmetic critical in computing?
    Answer: Binary arithmetic is essential because computers process all data in binary format for calculations, logic, and data manipulation.

Long Answer Questions (दीर्घ उत्तरीय प्रश्न)

  1. Explain the rules of binary addition and subtraction with detailed examples.
  2. Discuss the importance of binary multiplication and division in computer operations. Provide examples.
  3. How does binary arithmetic form the foundation of all computer operations? Discuss its significance in programming and data processing.

Post a Comment