Found 1006 Articles for Digital Electronics

Access and trunk ports

Satish Kumar
Updated on 27-Sep-2023 12:04:45

152 Views

Introduction In computer networking, a network switch is a device that connects network devices together to enable communication within a network. Switches are an essential component of any modern network, and they provide a way to manage network traffic by directing data to appropriate device. Access and trunk ports are two types of ports used on switches to manage network traffic. In this article, we will discuss access and trunk ports, their differences, and when to use them. What are Access and Trunk Ports? Access ports and trunk ports are two types of ports used on network switches. Access ... Read More

Types of Integrated Circuits (ICs)

Manish Kumar Saini
Updated on 03-Oct-2023 14:48:44

460 Views

In this article, we will discuss different types of ICs (Integrated Circuits) in electronics. As we know, the integrated circuits (ICs) are one of the crucial parts of all electronic devices and systems. Without ICs, most of the hi tech electronic devices and gadgets that we use would cease to exist. Integrated circuits made the electronic devices and systems so small that they became an integral part of every field of human life. Therefore, integrated circuits or ICs are entirely responsible for miniaturization of electronic devices and circuits. Before discussing different types of ICs, let us first understand a ... Read More

Three Variable Function using an 8:1 Multiplexer

Manish Kumar Saini
Updated on 03-Oct-2023 14:46:05

747 Views

Let's start this tutorial with a basic introduction of 8:1 multiplexer before moving on to cover how a three variable logic function can be implemented using an 8:1 multiplexer. Introduction to 8:1 Multiplexer A multiplexer (or MUX) is a digital logic circuit that accepts multiple data inputs and allows only one of them at a time to pass through the output line. Hence, multiplexer is also known as data selector. In other words, a multiplexer is a digital circuit which Based on the number of input data lines, there are several types of multiplexers. But, this article is meant ... Read More

Simplification of Boolean Expressions by Using Boolean Algebra

Manish Kumar Saini
Updated on 03-Oct-2023 14:42:59

425 Views

Simplification is an approach in which a Boolean expression is minimized or reduced into an equivalent expression by using some Boolean identities. Boolean algebra is a mathematic applied to binary number system. It was developed by George Boole, an English mathematician, to simplify complex logical operation to their simplest form. The simplification of a Boolean function is important because it reduces the number of logic devices/gates required to implement a logic function. This in turn reduces the hardware cost and complexity of the circuit. Also, it increases the reliability of the system. In this tutorial, we will understand the ... Read More

Serial Binary Adder in Digital Electronics

Manish Kumar Saini
Updated on 03-Oct-2023 14:39:08

2K+ Views

In digital electronics, the binary adder is a combinational logic circuit which performs the addition of two or more binary digits. The binary addition is performed based on the Boolean algebraic laws of addition, i.e., $$0+0=0$$ $$0+1=1$$ $$1+0=1$$ $$1+1=0$$ Binary adders are classified into two types namely, serial binary adder and parallel binary adder. In this tutorial, we will discuss serial binary adder, its definition, logic circuit diagram, and operation. So, let us start with basic introduction of serial binary adder. What is a Serial Binary Adder? A serial binary adder is a binary adder circuit which is used to ... Read More

Realization of a logic function in SOP form using NOR gate

Manish Kumar Saini
Updated on 03-Oct-2023 14:34:25

450 Views

Let's start this tutorial with some basics of SOP form and NOR gates before getting into the details of how to realize a logic function or Boolean expression in SOP form using NOR gates only. SOP Form SOP form stands for Sum of Products form. SOP form is one in which a Boolean expression is expressed as a sum of product terms. For example, $$\mathrm{\mathit{f}\lgroup A, B, C\rgroup=AB+ABC+B\overline{C}}$$ This is a Boolean function expressed in SOP (Sum of Products) form. NOR Gate NOR Gate is a universal logic gate, i.e., NOR gate can be used for realization of any ... Read More

Realization of a logic function in SOP form using NAND gate

Manish Kumar Saini
Updated on 03-Oct-2023 14:27:34

605 Views

SOP Form SOP form stands for Sum of Products form. SOP form is one in which a Boolean expression is expressed as a sum of product terms. For example, $$\mathrm{\mathit{f}\lgroup A, B, C\rgroup=AB+ABC+B\overline{C}}$$ This is a Boolean function expressed in SOP (Sum of Products) form. NAND Gate The NAND Gate is a type of universal logic gate. It is a logic gate one that can be used to realize any kind of logical function or any other type of logic gate. A NAND gate is basically a combination of two basic logic gates namely AND gate and NOT gate, i.e. ... Read More

Radix Conversion in Digital Electronics

Manish Kumar Saini
Updated on 03-Oct-2023 14:26:11

605 Views

In positional number systems, the radix is the total number of unique digits that are used to represent numbers in that number system. Radix is also called Base. For example, in decimal number system, we use total ten digits from 0 to 9 (i.e. 0, 1, 2, 3, 4, 5, 6, 7, 8, 9) to represent any decimal number. Therefore, for the decimal number system, the radix or base is ten (10). Although we can easily convert a given number from one radix (i.e. number system) to any other radix (number system) by using radix conversion protocols. In this article, ... Read More

Plotting Zeros (Max Term Representation) of a Boolean Function on K-Map

Manish Kumar Saini
Updated on 03-Oct-2023 13:53:32

95 Views

The K-Map or Karnaugh Map is a systematic method of simplifying a complex Boolean function or expression. The K-Map is basically a graph or a chart which consists of a certain number of adjacent cells. Each cell represents a particular combination of variables in either sum or product form. However, we can use the K-Map for simplifying a Boolean function in any number of variables, but it becomes tedious for functions involving five or more variables. In actual practice, we usually use K-Map for simplification of Boolean functions in upto six variables. A Boolean function in n variables can have ... Read More

Parallel Adder and Parallel Subtractor

Manish Kumar Saini
Updated on 03-Oct-2023 13:50:57

2K+ Views

In digital electronics, adder and subtractor are the two most basic arithmetic combinational circuits. The adder is a combinational arithmetic circuit used to perform addition of two or more binary numbers. Whereas, the subtractor is a combination arithmetic circuit used to perform subtraction of two binary numbers. Depending on the form in which the addition and subtraction of binary numbers are executed, the adder and subtractor are classified into following types − Serial Adder Parallel Adder Serial Subtractor Parallel Subtractor This tutorial is meant for explaining Parallel Adder and Parallel Subtractor. But before that let us first discuss ... Read More

Advertisements