SlideShare a Scribd company logo
3
Most read
14
Most read
15
Most read
Digital Electronics most essential and
frequently asked Interview Questions
Let me give a brief introduction of this particular domain i.e. Digital
Electronics.
It is a very important and a common subject for electrical, electronics &
Instrumentation Engineering student. It deals with the theory & practical
knowledge of digital system and how they are implemented in various
digital instruments.
These questions have been designed for the Electronics Engineering
Students, especially for those who are preparing for GATE, IES & other
PSU exams.
A list of top frequently asked Digital Electronics Interview Questions
and answers are given below.
1) What is the difference between Latch And Flip-
flop?
The difference between latches and Flip-flop is that the latches are level
triggered and flip-flops are edge triggered. In latches level triggered
means that the output of the latches changes as we change the input
and edge triggered means that control signal only changes its state
when goes from low to high or high to low.
Latches are fast whereas flip-flop is slow.
2) What is the binary number system?
A system which has a base 2 is known as the binary system and it
consists of only two digits 0 and 1.
For Example: Take decimal number 625
625 = 600 + 20 + 5
That means,
6×100 + 2×10 + 5
6 ×102 + 2×101 + 5×100
In this 625 consist of three bits, we start writing the numbers from the
rightmost bit power as 0 then the second bit as power 1 and the last as
power 2. So, we can represent a decimal number as
∑digit × 10corresponding position or bit
Here 10 is the total number of digits from 0 to 9.
3) State De Morgan's Theorem?
De Morgan's Theorem stated two theorems:
1.The complement of a product of two numbers is the sum of the
complements of those numbers.
(A. B)' = A' + B'
Truth Table:
2. The complement of the sum of two numbers is equal to the product
of the complement of two numbers.
(A + B)' = A'B'
Truth Table:
4) Define Digital System?
Digital systems are the system that processes a discrete or digital
signal.
5) What is meant by a bit?
Bits are the binary digits like 0 and 1.
6) What is the best Example of Digital system?
Digital Computer.
7) How many types of number system are there?
There are four types of number system:
1. Decimal Number System.
2. Binary Number System.
3. Octal Number System.
4. Hexadecimal Number System.
8) What is a Logic gate?
The basic gates that make up the digital system are called a logic gate.
The circuit that can operate on many binary inputs to perform a
particular logic function is called an electronic circuit.
9) What are the basic Logic gates?
There are three basic logic gates-
1. AND gate.
2. OR gate.
3. NOT gate.
10) Which gates are called as Universal gate and
what are its advantages?
The Universal gates are NAND and NOR. The advantages of these gates
are that they can be used for any logic calculation.
11) What are the applications of the octal number
system?
The applications of the octal number system are as follows:
1. For the efficient use of microprocessors.
2. For the efficient use of digital circuits.
3. It is used to enter binary data and display of information.
12) What are the fundamental properties of Boolean
algebra?
The basic properties of Boolean algebra are:
1. Commutative Property.
2. Associative Property.
3. Distributive Property.
13) What are Boolean algebra and Boolean
expression?
Boolean algebra is a division of mathematics which deals with
operations on logical values and incorporates binary variables. The
distinguishing factor of Boolean algebra is that it deals only with the
study of binary variables. Most commonly Boolean variables are
presented with the possible values of 1 ("true") or 0 ("false"). Variables
can also have more complex interpretations, such as in set theory.
Boolean algebra is also known as binary algebra.
Whereas
In computer science, a Boolean expression is used expression in a
programming language that produces a Boolean value when evaluated,
that is one of true or false. A Boolean expression may be composed of
a combination of the Boolean constants true or false, Boolean-typed
variables, Boolean-valued operators, and Boolean-valued functions.
Boolean expressions correspond to propositional formulas in logic and
are a special case of Boolean circuits.
14) What is meant by K-Map or Karnaugh Map?
K-Map is a pictorial representation of truth table in which the map is
made up of cells, and each term in this represents the min term or max
term of the function. By this method, we can directly minimize the
Boolean function without following various steps.
15) Name the two forms of Boolean expression?
The two forms of Boolean expression are:
1. Sum of products (SOP) form.
2. The Product of sum (POS) form.
16) What are Minterm and Maxterm?
A Minterm is called Product of sum because they are the logical AND of
the set of variables and Maxterm are called sum of product because
they are the logical OR of the set of variables.
17) Write down the Characteristics of Digital ICs?
The characteristics of digital ICs are –
1. Propagation delay.
2. Power Dissipation.
3. Fan-in.
4. Fan-out.
5. Noise Margin.
18) What are the limitations of the Karnaugh Map?
The limitations of Karnaugh Map are as follows:
1. It is limited to six variable maps which means more than six
variable involving expressions are not reduced.
2. These are useful for only simplifying Boolean expression which is
represented I standard form.
19) What are the advantages and disadvantages of
the K-Map Method?
The advantages of the K-Map method are as follows:
1. It is an excellent method for simplifying expression up to four
variables.
2. For the logical simplification, it gives us a visual method.
3. It is suitable for both SOP and POS forms of reduction.
4. It is more suitable for classroom teachings on logic
simplification.
The disadvantages of the K-Map method are as follows:
1. It is not suitable when the number of variables exceeds more
than four.
2. For Computer reduction, it is not suitable.
3. We have to take while entering the numbers in the cell-like 0, 1
and don't care terms.
20) What are the advantages of Quine-MC Cluskey
method?
Advantages
1. It is systematic for producing a minimal function.
2. It is good in handling a large no of variables.
21) Define Pair, Quad, and Octet?
Pair: Two adjacent cell of karnaugh map is called as Pair. It cancels
one variable in a K-Map simplification.
Quad: A Pair of Four adjacent pairs in a karnaugh map is called a
quad. It cancels two variables in a K-Map simplification.
Octet: A Pair of eight adjacent pair in a karnaugh map is called an
octet. It cancels four variables in a K-map simplification.
22) Define Fan-in and Fan-out?
Fan-in- The Fan-in of the gate means that the number of inputs that
are connected to the gate without the degradation of the voltage level
of the system.
Fan-out- The Fan-out is the maximum number of same inputs of the
same IC family that a gate can drive maintaining its output levels
within the specified limits.
23) Write the definition of the Duality Theorem?
Duality Theorem states that we can derive another Boolean expression
with the existing Boolean expression by:
1. Changing OR operation (+ Sign) to AND operation (. Dot Sign)
and vice versa.
2. Complimenting 0 and 1 in the expression by changing 0 to 1 and
1 to 0 respectively.
24) What is Half-Adder?
Half-adder is the circuits that perform the addition of two bits. It has
two inputs A and B and two outputs S (sum) and C (carry). It is
represented by XOR logic gate and an AND logic gate.
Truth Table of Half adder:
25) What is Full-Adder?
Full-adder is the circuits that perform the addition of three bits. It has
three inputs A, B and a carry bit. Full adders are represented with AND,
OR and XOR logic gate.
Truth Table of Full-Adder
26) What is power dissipation?
Period time is the electrical energy used by the logic circuits. It is
expressed in milliwatts or nanowatts.
Power dissipation = Supply voltage * mean current taken from
the supply.
27) What is a Multiplexer?
The multiplexer is a digital switch which combines all the digital
information from several sources and gives one output.
28) What are the applications of Multiplexer
(MUX)?
The applications of the multiplexer are as follows:
1. It is used as a data selector from many inputs to get one output.
2. It is used as A/D to D/A Converter.
3. These are used in the data acquisition system.
4. These are used in time multiplexing system.
29) What is a Demultiplexer?
The demultiplexer is a circuit that receives the input on a single line
and transmits this onto 2n possible output line. A Demultiplexer of 2n
outputs has n select lines, which are used to select which output line is
to be sent to the input. The demultiplexer is also called as Data
Distributor.
30) What are the applications of Demultiplexer?
The applications of the demultiplexer are as follows:
1. It is used in the data transmission system with error detection.
2. It is used as a decoder for the conversion of binary to decimal.
3. It is used as a serial to parallel converter.
31) What are the differences between
Combinational Circuits and Sequential Circuits?
The differences between combinational and sequential circuits are as
follows:
S.No Combinational Circuits Sequential Circuits
1. These are faster in speed. These are slower.
2. These are easy to design. These are difficult to design.
3. The clock input is not required. The clock input is required.
4. In this, the memory units are
not required.
In this, the memory units are
required to store the previous values
of inputs.
5. Example: Mux, Demux,
encoder, decoder, adders,
subtractors.
Example: Shift registers, counters.
32) Define Rise Time?
Rise time is the time that is required to change the voltage level from
10% to 90%.
33) Define fall time?
Fall time is the time that is required to change the voltage level from
90% to 10%.
34) Define Setup time?
The minimum time that is required to maintain the constant voltage
levels at the excitation inputs of the flip-flop device before the
triggering edge of the clock pulse for the levels to be reliably clocked in
the flip flop is called the Setup time. It is denoted as tsetup.
35) Define Hold time?
The minimum time at which the voltage level becomes constant after
triggering the clock pulse in order to reliably clock into the flip flop is
called the Hold time. It is denoted by thold.
36) What is the difference between Synchronous
and Asynchronous Counters?
The difference between Synchronous and Asynchronous Counters are
as follows:
S.No Asynchronous Counters Synchronous Counters
1. These are low-speed Counters. These are high-speed Counters.
2. The Flip flops of these counters
are not clocked simultaneously.
In these counters, the flip-flops are
clocked simultaneously.
3. Simple logic circuits are there for
more number of states.
Complex logic circuits are there
when the number of states
increases.
37) What are the applications of Flip-Flops?
The applications of flip-flops are:
1. Flip-flops are used as the delay element.
2. These are used for Data transfer.
3. Flip-flops are used in Frequency Division and Counting.
4. Flip-Flops are used as the memory element.
38) What is the difference between D-latch and D
Flip-flop?
D-latch is level sensitive whereas flip-flop is edge sensitive. Flip-flops
are made up of latches.
39) What are the applications of Buffer?
Applications of buffer are as follows:
1. Buffer helps to introduce small delays.
2. Buffer helps for high Fan-out.
3. Buffer are used to eliminate cross talks.
We hope these questions and answers will help you in your Interviews.
Best of luck…

More Related Content

PPTX
Amplitude Modulation and Frequency Modulation
PDF
Comparison Frequency modulation and Phase modulation
PPT
Introduction to Analog signal
PPTX
Types of Sampling in Analog Communication
PDF
ADC and DAC interfacing.pdf
PPTX
SINGULAR POINT IN NON-LINEAR SYSTEM
PDF
Analog Electronics interview and viva questions.pdf
PDF
Cmos testing
Amplitude Modulation and Frequency Modulation
Comparison Frequency modulation and Phase modulation
Introduction to Analog signal
Types of Sampling in Analog Communication
ADC and DAC interfacing.pdf
SINGULAR POINT IN NON-LINEAR SYSTEM
Analog Electronics interview and viva questions.pdf
Cmos testing

What's hot (20)

PPTX
Microcontroller 8051 and its interfacing
PDF
Decimation and Interpolation
PPTX
Microwave waveguides 1st 1
PDF
Linear modulation
PPTX
Frequency synthesizers
PPTX
NYQUIST CRITERION FOR ZERO ISI
PDF
Need For Modulation in Communication System
DOCX
Traffic light controller
PPTX
Comparison of Amplitude Modulation Techniques.pptx
PDF
Signal and System, CT Signal DT Signal, Signal Processing(amplitude and time ...
PPTX
Chapter04. am modulators
PDF
Microwave Engineering Lecture Notes
PDF
1.introduction to signals
PPT
Unit 2 signal generators
PDF
Line coding
PPTX
Instrumentation amplifier
PDF
3.Frequency Domain Representation of Signals and Systems
PPT
311 angle modulation
Microcontroller 8051 and its interfacing
Decimation and Interpolation
Microwave waveguides 1st 1
Linear modulation
Frequency synthesizers
NYQUIST CRITERION FOR ZERO ISI
Need For Modulation in Communication System
Traffic light controller
Comparison of Amplitude Modulation Techniques.pptx
Signal and System, CT Signal DT Signal, Signal Processing(amplitude and time ...
Chapter04. am modulators
Microwave Engineering Lecture Notes
1.introduction to signals
Unit 2 signal generators
Line coding
Instrumentation amplifier
3.Frequency Domain Representation of Signals and Systems
311 angle modulation
Ad

Similar to Digital Electronics Most Essential and Frequently Asked Interview Questions (20)

PDF
3110016_BE_GTU_Study_Material_e-Notes_6_02052020063009AM.pdf
PDF
Digital Principles and computer Organisation important 2 mark Questions
PDF
Analog and Digital Electronics engin.pdf
PDF
Combinational circuits
PPT
IS 139 Lecture 3 - 2015
PPT
IS 139 Lecture 3
PDF
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
PPTX
chapter1.pptx digital logic design for electrical engineering
DOCX
Dd 160506122947-160630175555-160701121726
PPTX
UNIT 2nnb djdjnesisknssjksnddnbdhdnd.pptx
PDF
Digital Electronics
PPTX
Combinational logic circuits by Tahir Yasin
PPTX
Computer organization and architecture Chapter 1-1.pptx
PPTX
Computer organization and architecture Chapter 1 (3).PPTX
PDF
Simplification of Circuits.pdf
PPTX
Module 1- basics of Digital Electronics .pptx
PPTX
Chapter one embedded system corse ppt AASTU.pptx
PDF
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
PPTX
digital systems introduction logic systems
3110016_BE_GTU_Study_Material_e-Notes_6_02052020063009AM.pdf
Digital Principles and computer Organisation important 2 mark Questions
Analog and Digital Electronics engin.pdf
Combinational circuits
IS 139 Lecture 3 - 2015
IS 139 Lecture 3
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
chapter1.pptx digital logic design for electrical engineering
Dd 160506122947-160630175555-160701121726
UNIT 2nnb djdjnesisknssjksnddnbdhdnd.pptx
Digital Electronics
Combinational logic circuits by Tahir Yasin
Computer organization and architecture Chapter 1-1.pptx
Computer organization and architecture Chapter 1 (3).PPTX
Simplification of Circuits.pdf
Module 1- basics of Digital Electronics .pptx
Chapter one embedded system corse ppt AASTU.pptx
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
digital systems introduction logic systems
Ad

Recently uploaded (20)

DOCX
How to Become a Criminal Profiler or Behavioural Analyst.docx
PPTX
PMP (Project Management Professional) course prepares individuals
PPTX
chapter 3_bem.pptxKLJLKJLKJLKJKJKLJKJKJKHJH
PPTX
internship presentation of bsnl in colllege
PPT
APPROACH TO DEVELOPMENTALlllllllllllllllll
PPTX
Sports and Dance -lesson 3 powerpoint presentation
PPTX
Discovering the LMA Course by Tim Han.pptx
PDF
Josh Gao Strength to Strength Book Summary
PPT
Gsisgdkddkvdgjsjdvdbdbdbdghjkhgcvvkkfcxxfg
PPTX
Definition and Relation of Food Science( Lecture1).pptx
PDF
Daisia Frank: Strategy-Driven Real Estate with Heart.pdf
PPTX
Cerebral_Palsy_Detailed_Presentation.pptx
PDF
Sales and Distribution Managemnjnfijient.pdf
PPTX
microtomy kkk. presenting to cryst in gl
PDF
シュアーイノベーション採用ピッチ資料|Company Introduction & Recruiting Deck
PPTX
1751884730-Visual Basic -Unitj CS B.pptx
PPTX
退学买新西兰毕业证(WelTec毕业证书)惠灵顿理工学院毕业证国外证书制作
PPTX
The Stock at arrangement the stock and product.pptx
PPTX
E-Commerce____Intermediate_Presentation.pptx
PPTX
Your Guide to a Winning Interview Aug 2025.
How to Become a Criminal Profiler or Behavioural Analyst.docx
PMP (Project Management Professional) course prepares individuals
chapter 3_bem.pptxKLJLKJLKJLKJKJKLJKJKJKHJH
internship presentation of bsnl in colllege
APPROACH TO DEVELOPMENTALlllllllllllllllll
Sports and Dance -lesson 3 powerpoint presentation
Discovering the LMA Course by Tim Han.pptx
Josh Gao Strength to Strength Book Summary
Gsisgdkddkvdgjsjdvdbdbdbdghjkhgcvvkkfcxxfg
Definition and Relation of Food Science( Lecture1).pptx
Daisia Frank: Strategy-Driven Real Estate with Heart.pdf
Cerebral_Palsy_Detailed_Presentation.pptx
Sales and Distribution Managemnjnfijient.pdf
microtomy kkk. presenting to cryst in gl
シュアーイノベーション採用ピッチ資料|Company Introduction & Recruiting Deck
1751884730-Visual Basic -Unitj CS B.pptx
退学买新西兰毕业证(WelTec毕业证书)惠灵顿理工学院毕业证国外证书制作
The Stock at arrangement the stock and product.pptx
E-Commerce____Intermediate_Presentation.pptx
Your Guide to a Winning Interview Aug 2025.

Digital Electronics Most Essential and Frequently Asked Interview Questions

  • 1. Digital Electronics most essential and frequently asked Interview Questions Let me give a brief introduction of this particular domain i.e. Digital Electronics. It is a very important and a common subject for electrical, electronics & Instrumentation Engineering student. It deals with the theory & practical knowledge of digital system and how they are implemented in various digital instruments. These questions have been designed for the Electronics Engineering Students, especially for those who are preparing for GATE, IES & other PSU exams. A list of top frequently asked Digital Electronics Interview Questions and answers are given below. 1) What is the difference between Latch And Flip- flop? The difference between latches and Flip-flop is that the latches are level triggered and flip-flops are edge triggered. In latches level triggered means that the output of the latches changes as we change the input and edge triggered means that control signal only changes its state when goes from low to high or high to low. Latches are fast whereas flip-flop is slow.
  • 2. 2) What is the binary number system? A system which has a base 2 is known as the binary system and it consists of only two digits 0 and 1. For Example: Take decimal number 625 625 = 600 + 20 + 5 That means, 6×100 + 2×10 + 5 6 ×102 + 2×101 + 5×100 In this 625 consist of three bits, we start writing the numbers from the rightmost bit power as 0 then the second bit as power 1 and the last as power 2. So, we can represent a decimal number as ∑digit × 10corresponding position or bit Here 10 is the total number of digits from 0 to 9. 3) State De Morgan's Theorem? De Morgan's Theorem stated two theorems: 1.The complement of a product of two numbers is the sum of the complements of those numbers. (A. B)' = A' + B' Truth Table:
  • 3. 2. The complement of the sum of two numbers is equal to the product of the complement of two numbers. (A + B)' = A'B' Truth Table: 4) Define Digital System? Digital systems are the system that processes a discrete or digital signal. 5) What is meant by a bit? Bits are the binary digits like 0 and 1. 6) What is the best Example of Digital system? Digital Computer.
  • 4. 7) How many types of number system are there? There are four types of number system: 1. Decimal Number System. 2. Binary Number System. 3. Octal Number System. 4. Hexadecimal Number System. 8) What is a Logic gate? The basic gates that make up the digital system are called a logic gate. The circuit that can operate on many binary inputs to perform a particular logic function is called an electronic circuit. 9) What are the basic Logic gates? There are three basic logic gates- 1. AND gate. 2. OR gate. 3. NOT gate. 10) Which gates are called as Universal gate and what are its advantages? The Universal gates are NAND and NOR. The advantages of these gates are that they can be used for any logic calculation.
  • 5. 11) What are the applications of the octal number system? The applications of the octal number system are as follows: 1. For the efficient use of microprocessors. 2. For the efficient use of digital circuits. 3. It is used to enter binary data and display of information. 12) What are the fundamental properties of Boolean algebra? The basic properties of Boolean algebra are: 1. Commutative Property. 2. Associative Property. 3. Distributive Property. 13) What are Boolean algebra and Boolean expression? Boolean algebra is a division of mathematics which deals with operations on logical values and incorporates binary variables. The distinguishing factor of Boolean algebra is that it deals only with the study of binary variables. Most commonly Boolean variables are presented with the possible values of 1 ("true") or 0 ("false"). Variables can also have more complex interpretations, such as in set theory. Boolean algebra is also known as binary algebra. Whereas In computer science, a Boolean expression is used expression in a programming language that produces a Boolean value when evaluated, that is one of true or false. A Boolean expression may be composed of a combination of the Boolean constants true or false, Boolean-typed variables, Boolean-valued operators, and Boolean-valued functions. Boolean expressions correspond to propositional formulas in logic and are a special case of Boolean circuits.
  • 6. 14) What is meant by K-Map or Karnaugh Map? K-Map is a pictorial representation of truth table in which the map is made up of cells, and each term in this represents the min term or max term of the function. By this method, we can directly minimize the Boolean function without following various steps. 15) Name the two forms of Boolean expression? The two forms of Boolean expression are: 1. Sum of products (SOP) form. 2. The Product of sum (POS) form. 16) What are Minterm and Maxterm? A Minterm is called Product of sum because they are the logical AND of the set of variables and Maxterm are called sum of product because they are the logical OR of the set of variables. 17) Write down the Characteristics of Digital ICs? The characteristics of digital ICs are – 1. Propagation delay. 2. Power Dissipation. 3. Fan-in. 4. Fan-out. 5. Noise Margin.
  • 7. 18) What are the limitations of the Karnaugh Map? The limitations of Karnaugh Map are as follows: 1. It is limited to six variable maps which means more than six variable involving expressions are not reduced. 2. These are useful for only simplifying Boolean expression which is represented I standard form. 19) What are the advantages and disadvantages of the K-Map Method? The advantages of the K-Map method are as follows: 1. It is an excellent method for simplifying expression up to four variables. 2. For the logical simplification, it gives us a visual method. 3. It is suitable for both SOP and POS forms of reduction. 4. It is more suitable for classroom teachings on logic simplification. The disadvantages of the K-Map method are as follows: 1. It is not suitable when the number of variables exceeds more than four. 2. For Computer reduction, it is not suitable. 3. We have to take while entering the numbers in the cell-like 0, 1 and don't care terms. 20) What are the advantages of Quine-MC Cluskey method? Advantages 1. It is systematic for producing a minimal function.
  • 8. 2. It is good in handling a large no of variables. 21) Define Pair, Quad, and Octet? Pair: Two adjacent cell of karnaugh map is called as Pair. It cancels one variable in a K-Map simplification. Quad: A Pair of Four adjacent pairs in a karnaugh map is called a quad. It cancels two variables in a K-Map simplification. Octet: A Pair of eight adjacent pair in a karnaugh map is called an octet. It cancels four variables in a K-map simplification. 22) Define Fan-in and Fan-out? Fan-in- The Fan-in of the gate means that the number of inputs that are connected to the gate without the degradation of the voltage level of the system. Fan-out- The Fan-out is the maximum number of same inputs of the same IC family that a gate can drive maintaining its output levels within the specified limits. 23) Write the definition of the Duality Theorem? Duality Theorem states that we can derive another Boolean expression with the existing Boolean expression by: 1. Changing OR operation (+ Sign) to AND operation (. Dot Sign) and vice versa. 2. Complimenting 0 and 1 in the expression by changing 0 to 1 and 1 to 0 respectively.
  • 9. 24) What is Half-Adder? Half-adder is the circuits that perform the addition of two bits. It has two inputs A and B and two outputs S (sum) and C (carry). It is represented by XOR logic gate and an AND logic gate. Truth Table of Half adder:
  • 10. 25) What is Full-Adder? Full-adder is the circuits that perform the addition of three bits. It has three inputs A, B and a carry bit. Full adders are represented with AND, OR and XOR logic gate. Truth Table of Full-Adder 26) What is power dissipation? Period time is the electrical energy used by the logic circuits. It is expressed in milliwatts or nanowatts. Power dissipation = Supply voltage * mean current taken from
  • 11. the supply. 27) What is a Multiplexer? The multiplexer is a digital switch which combines all the digital information from several sources and gives one output. 28) What are the applications of Multiplexer (MUX)? The applications of the multiplexer are as follows: 1. It is used as a data selector from many inputs to get one output. 2. It is used as A/D to D/A Converter. 3. These are used in the data acquisition system. 4. These are used in time multiplexing system.
  • 12. 29) What is a Demultiplexer? The demultiplexer is a circuit that receives the input on a single line and transmits this onto 2n possible output line. A Demultiplexer of 2n outputs has n select lines, which are used to select which output line is to be sent to the input. The demultiplexer is also called as Data Distributor. 30) What are the applications of Demultiplexer? The applications of the demultiplexer are as follows: 1. It is used in the data transmission system with error detection. 2. It is used as a decoder for the conversion of binary to decimal. 3. It is used as a serial to parallel converter.
  • 13. 31) What are the differences between Combinational Circuits and Sequential Circuits? The differences between combinational and sequential circuits are as follows: S.No Combinational Circuits Sequential Circuits 1. These are faster in speed. These are slower. 2. These are easy to design. These are difficult to design. 3. The clock input is not required. The clock input is required. 4. In this, the memory units are not required. In this, the memory units are required to store the previous values of inputs. 5. Example: Mux, Demux, encoder, decoder, adders, subtractors. Example: Shift registers, counters. 32) Define Rise Time? Rise time is the time that is required to change the voltage level from 10% to 90%. 33) Define fall time? Fall time is the time that is required to change the voltage level from 90% to 10%.
  • 14. 34) Define Setup time? The minimum time that is required to maintain the constant voltage levels at the excitation inputs of the flip-flop device before the triggering edge of the clock pulse for the levels to be reliably clocked in the flip flop is called the Setup time. It is denoted as tsetup. 35) Define Hold time? The minimum time at which the voltage level becomes constant after triggering the clock pulse in order to reliably clock into the flip flop is called the Hold time. It is denoted by thold.
  • 15. 36) What is the difference between Synchronous and Asynchronous Counters? The difference between Synchronous and Asynchronous Counters are as follows: S.No Asynchronous Counters Synchronous Counters 1. These are low-speed Counters. These are high-speed Counters. 2. The Flip flops of these counters are not clocked simultaneously. In these counters, the flip-flops are clocked simultaneously. 3. Simple logic circuits are there for more number of states. Complex logic circuits are there when the number of states increases. 37) What are the applications of Flip-Flops? The applications of flip-flops are: 1. Flip-flops are used as the delay element. 2. These are used for Data transfer. 3. Flip-flops are used in Frequency Division and Counting. 4. Flip-Flops are used as the memory element. 38) What is the difference between D-latch and D Flip-flop? D-latch is level sensitive whereas flip-flop is edge sensitive. Flip-flops are made up of latches.
  • 16. 39) What are the applications of Buffer? Applications of buffer are as follows: 1. Buffer helps to introduce small delays. 2. Buffer helps for high Fan-out. 3. Buffer are used to eliminate cross talks. We hope these questions and answers will help you in your Interviews. Best of luck…