>
Digital Electronics
List of top Digital Electronics Questions
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
Multiplexers
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
Prev
1
2
Next