Table of Contents
Digital Electronics Tutorials
Table of Contents
Digital Electronics Tutorials
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
- A + B (इसे A OR B कहा जाएगा)
- A . B (इसे A AND B कहा जाएगा)
- (A + B)’ (इसे A OR B का NOT कहा जाएगा)
- (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
| A | B | A . B |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
OR Operator Truth Table
| A | B | A + B |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 1 |
NOT Operator Truth Table
| A | A' |
|---|---|
| 0 | 1 |
| 1 | 0 |
- 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

Table of Contents All Chapters 1. Personal Area Network 2. Local Area Network 3. Campus Area Network 4. Metropolitan Area...

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

Table of Contents All Chapters 1. Special Logic Gate 2. XOR Gate 2.1. XOR Gate Truth Table 3....

Table of Contents All Chapters 1. Universal Logic Gates 2. NOR Gate 2.1. NOR Gate Truth Table 3....

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

Table of Contents All Chapters 1. Simplification 2. Simplification using Boolean Algebra Theorems 3. Simplification using K-map Digital Electronics...

Table of Contents All Chapters 1. Identity Laws 2. Null Laws 3. Domination Laws 4. Idempotent Laws 5. Complement Laws...