Introduction
In this post we covered many topics are given below.
1. Binary number system
2. Logic gates and Logic families
3. Boolean algebra
4. Combinational circuits
5. Flip-flops
6. Counters & registers
7. Memory
8. PLA
9. A to D and D to A conversation
10. Introduction to VLSI design
11. MOS Transistor and Inverters
12. Combinational & Sequential MOS circuit
13. FPGA
1. Binary number system:-
The binary number system is a base-2 number system that uses only two digits:
0 and 1
It is the most basic number system used in computers and electronic devices. In the binary system:
- Each digit is called a "bit" (binary digit)
- The value of each bit depends on its position
- The rightmost bit is the "least significant bit" (LSB)
- The leftmost bit is the "most significant bit" (MSB)
Binary Number System:
- Uses only 0 and 1
- Base-2 number system
- Used in computers and electronic devices
- Each digit is called a "bit"
Example:-
1. To convert the decimal number 15 to binary:
15 ÷ 2 = 7 remainder 1
7 ÷ 2 = 3 remainder 1
3 ÷ 2 = 1 remainder 1
1 ÷ 2 = 0 remainder 1
Reading the remainders from bottom to top, we get:
1111
The decimal number 15 is equal to 1111 in binary.
2. To convert the decimal number 424 to binary:
424 ÷ 2 = 212 remainder 0
212 ÷ 2 = 106 remainder 0
106 ÷ 2 = 53 remainder 0
53 ÷ 2 = 26 remainder 1
26 ÷ 2 = 13 remainder 0
13 ÷ 2 = 6 remainder 1
6 ÷ 2 = 3 remainder 0
3 ÷ 2 = 1 remainder 1
1 ÷ 2 = 0 remainder 1
Reading the remainders from bottom to top, we get:
110101000
The decimal number 424 is equal to 110101000 in binary.
2. Logic gates and Logic families
Here we provide series of youtube video A to Z information about Digital electronic. Also provide examples and questions asked in previous exams.
# Introduction to Boolean algebra Part 1
# Introduction to Boolean algebra Part 2
#boolean algebra Example Part 1

0 Comments