>
Digital Electronics
List of top Digital Electronics Questions
What is the value of X in the following equation? (11101101000)_2 + (765)_16 = (X)_8
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Number System and Binary Codes
Given below are two statements:
Statement-I: In a linear block code, NAND operation of any two valid codewords creates another valid codeword.
Statement-II: To guarantee correction up to t errors in all cases, the minimum Hamming distance in a block code must be $d_{min}=2t+1$.
In the light of the above statements, choose the correct answer from the options given below.
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Logic Gates
Given below are two statements, one is labelled as Assertion (A) and the other is labelled as Reason (R):
Assertion (A): The ENABLE input of an $m: 2^m$ decoder can be used to increase its size.
Reason (R) : The ENABLE input in an $m: 2^m$ decoder can be used as the $(m+1)^{th}$ input to result in a$ (m+1): 2^{m+1} $ decoder.
In the light of the above statements, choose the correct answer from the options given below.
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Decoders
An m: n decoder is used to enable 16 devices. The value of m is
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Decoders
The frequency of oscillations at the output of an astable multivibrator using Schmitt trigger directly depends on
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Multivibrators
For the monostable multivibrator timer 555 circuit with $R_A=7.5kΩ $ and $C=0.1 uF$, find out the period of the output waveform.
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Monostable Multivibrator
The input-output characteristics of a Schmitt trigger is given in figure.
The noise margin of the Schmitt Trigger is___
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Schmitt Trigger
The resolution for n-bit system D/A Converter is__
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Digital To Analog Converters
If ⊕ and ⊙ denote the exclusive OR and exclusive NOR operations, respectively, then which one of the following is not correct?
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Logic Gates
A 32:1 MUX can can be designed using:
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Multiplexer
The numbers of 1
s
in Binary representation of (3× 4096 + 12×256+ 5x16+3) are
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Number System and Binary Codes
The decimal number equivalent of (4057.06)
8
is
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Number System and Binary Codes
What is the maximum number of different Boolean function involving n Boolean variables?
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Boolean Functions
The stack pointer in a microprocessor is a
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Microprocessors
Which of the following interrupts is non-maskable in 8085 microprocessor?
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Microprocessors
Which processor provide 1 MB memory
CUET (PG) - 2023
CUET (PG)
Digital Electronics
Microprocessors
int main () {
double a [2]={20.0.25.0},
*
p,
*
q,
p=a;
q=p+1
printf (%d, %d, (int) (q-p))
int(
*
-q-
*
p);
GATE CS
Digital Electronics
Programmable Logic Array
int g(int p)
{
printf("%d", p);
return p;
}
int h(int q)
{
printf("%d", q);
return q;
}
void f(int x, int y)
{
g(x);
h(y);
}
int main ()
f(g(10), h(20));
}
What is the o/p printed ? (parameters all evaluated from left to right)
GATE CS
Digital Electronics
Programmable Logic Array