For the following questions answer them individually
The dynamic hazard problem occurs in
The logic circuit given below converts a binary code $$y_1, y_2, y_3$$ into
The circuit shown in the below figure is
If $$12A7C_{16}=X_{8}$$ then the value of X is
The Excess-3 Code is also called
The simplified Sum of Product form of the following Boolean expression $$(P+\overline{Q}+\overline{R})(P+Q+R)(P+Q+\overline{R})$$
Which of the following binary numberis the sameas its 2’s complement?
The functional difference between SRflip-flop and JK flip-flop is that
Which of the following binary numberis the sameas its 2’s complement?
Whatis the output of this C code?
#include <stdio.h>
void main()
{
int k = 5;
int *p = &k;
int **m = &p;
printf("%d %d %d\n", k, *p, **m);
}