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 12: Number System Arithmetic – Addition, Subtraction, Multiplication, Division in Binary | Class 11

Learn Number System Arithmetic in Day 12 of Class 11. Master binary addition, subtraction, multiplication, and division with step-by-step examples.

Day 12 – Chapter 2: Number System Arithmetic

Class 11 Computer Science

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

Binary arithmetic involves operations performed on binary numbers. These operations include addition, subtraction, multiplication, and division, which are essential in computer systems.
बाइनरी अंकगणित में बाइनरी संख्याओं पर किए गए संचालन शामिल हैं। इनमें जोड़, घटाव, गुणा, और भाग शामिल हैं, जो कंप्यूटर प्रणालियों में महत्वपूर्ण हैं।

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

Binary addition is similar to decimal addition. The rules for binary addition are:
बाइनरी जोड़ दशमलव जोड़ के समान है। बाइनरी जोड़ के नियम निम्नलिखित हैं:

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

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

Binary subtraction uses the concept of borrowing, similar to decimal subtraction. The rules for binary subtraction are:
बाइनरी घटाव दशमलव घटाव के समान उधार लेने की अवधारणा का उपयोग करता है। बाइनरी घटाव के नियम निम्नलिखित हैं:

  • 0 - 0 = 0
  • 1 - 0 = 1
  • 1 - 1 = 0
  • 0 - 1 = 1 (borrow 1)
  • Example: 10112 - 1102 = 1012

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

Binary multiplication is performed similarly to decimal multiplication using repeated addition. The rules for binary multiplication are:
बाइनरी गुणा पुनरावृत्त जोड़ का उपयोग करते हुए दशमलव गुणा के समान किया जाता है। बाइनरी गुणा के नियम निम्नलिखित हैं:

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

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

Binary division is similar to long division in the decimal system. It involves repeated subtraction and shifting.
बाइनरी भाग दशमलव प्रणाली में लंबा भाग के समान है। इसमें पुनरावृत्त घटाव और शिफ्टिंग शामिल है।

  • Example: 110102 ÷ 102 = 11012

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

Multiple Choice Questions (MCQs)

  1. What is the sum of 1012 + 112?
    (a) 1102 | (b) 10002 | (c) 10102 | (d) 1002
  2. What is 10112 - 102?
    (a) 10012 | (b) 1012 | (c) 10002 | (d) 1102
  3. What is the product of 1012 × 112?
    (a) 1112 | (b) 11112 | (c) 10102 | (d) 11012
  4. What is the quotient of 1102 ÷ 102?
    (a) 112 | (b) 102 | (c) 12 | (d) 1002
  5. What is the result of 10102 + 1102?
    (a) 100002 | (b) 11102 | (c) 10112 | (d) 11002
  6. What is the binary representation of 2710?
    (a) 110112 | (b) 101112 | (c) 111012 | (d) 100112
  7. What is the binary equivalent of 1510?
    (a) 10012 | (b) 11012 | (c) 11112 | (d) 10112
  8. What is 10112 ÷ 112?
    (a) 112 | (b) 102 | (c) 12 | (d) 1012
  9. Which operation is performed by repeated subtraction in binary?
    (a) Addition | (b) Subtraction | (c) Division | (d) Multiplication
  10. What is the binary product of 112 × 102?
    (a) 1102 | (b) 10002 | (c) 10102 | (d) 1112

Answers to MCQs:

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

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

  1. What are the rules for binary addition?
    Answer: 0+0=0, 0+1=1, 1+0=1, 1+1=10 (carry 1).
  2. What is 10112 - 112?
    Answer: 10002.
  3. Explain binary multiplication rules.
    Answer: 0×0=0, 0×1=0, 1×0=0, 1×1=1.
  4. How is binary division performed?
    Answer: By repeated subtraction and shifting.
  5. What is the binary equivalent of 1910?
    Answer: 100112.

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

  1. Explain the process of binary addition and subtraction with examples.
  2. Discuss binary multiplication and its importance in computer arithmetic.
  3. Describe the steps involved in binary division with an example.

Post a Comment