Boolean Algebra in Hindi

Boolean Algebra

Boolean Algebra एक ऐसा mathematical system है जिसमे binary value (0, 1) का use किया जाता है, ये एक framework है जिसमे rules और laws को define किया जाता है।

  • True को represent करने के लिए “1” और False को represent करने के लिए “0’ का use किया जाता है।

Boolean Expressions

Boolean expressions ये Boolean algebra के formulas होते है जिसमे variables और logical operators का use किया जाता है।

Boolean expressions का use logic gates, digital circuits और computer decision making मे किया जाता है।

Boolean Operators

Boolean expressions के बीच कोई operation perform कराने के लिए Boolean operators का use किया जाता है, इसमे 3 basic operator “AND”, “OR”, “NOT” होते है।

AND Operator

AND Operator दोनों values “1” होने पर “1” return करता है otherwise “0” return करता है, इसे ” . ” से represent करते है।

 

Example: if A = 1, B = 1 then A . B = 1

OR Operator

OR operator कोई भी एक value “1” होने पर “1” return करता है otherwise “0” return करता है, इसे “ + “ से represent करते है।

 

Example: if A = 1, B = 1 then A + B = 1

NOT Operator

NOT operator “1” को “0” और “0” को “1” कर देता है, इसे “ – ” या “ ‘ ” represent करते है।

 

Example: if A = 1 then A’ = 0

Some example of Boolean expressions

  1. A + B (इसे A OR B कहा जाएगा)
  2. A . B (इसे A AND B कहा जाएगा)
  3. (A + B)’ (इसे A OR B का NOT कहा जाएगा)
  4. (A’ + B) . C (इसे NOT A OR B AND C कहा जाएगा)

Truth Table Representation

Truth table एक ऐसा table होता है जो Boolean expressions (0, 1) मे कोई operation perform करने पर प्राप्त value (output) को दिखाता है।

AND Operator Truth Table

ABA . B
000
010
100
111

OR Operator Truth Table

ABA + B
000
011
101
111

NOT Operator Truth Table

AA'
01
10

Add a comment...

  • All Posts
  • Artificial Intelligence
  • Computer Fundamentals
  • Computer Networks
  • Data Analytics
  • Data Science
  • DBMS
  • Deep Learning
  • Digital Electronics
  • DSA with Python
  • Excel
  • Exercise
  • Git & Github
  • Machine Learning
  • Matplotlib
  • Natural Language Processing
  • NumPy
  • Operating System
  • Pandas-s
  • Power BI
  • Python Tutorial
  • Scikit-learn
  • Seaborn
  • SQL & MySQL
computer networks

Table of Contents All Chapters 1. OSI Model      1.1. Physical Layer      1.2. Data Link Layer  ...

computer networks

Table of Contents All Chapters 1. Topology 2. Types of Topology      2.1. Point to Point Topology    ...

computer networks

Table of Contents All Chapters 1. Data Communication 2. Types of Data Communication      2.1. Simplex      2.2....

digital electronics number system

Table of Contents All Chapters 1. Logic Gate 2. AND Gate      2.1. AND Gate Truth Table 3. OR...

Edit Template

Sign up to track your learning

Login to continue your learning tracking

To reset your password, please enter your email address or username below.

Scroll to Top