Computer Science, asked by samreen6963, 10 months ago

Assume A=15,B=2 what is the result of A&B?(Binary &) *

Answers

Answered by xSahiBx
0

Answer:

__________________________________

For logical equality if an operand bit has a value of x or z, the result is x. A=3'b010; B=2'b10; (A==B)=1' b1 (A!=B)=1'b0 A=3'bx10; B=3'b010; ... A=4'b10x0; B=4'b1x11; ~A=4'01x1 (A&B)=4

__________________________________

Similar questions