Hardware interview practice
Nonblocking assignment (NBA) evaluation and update
What does the strobe print?
Starting point
Question code
logic a = 0, b = 0;
initial begin
#1;
a <= 1;
b <= a;
$strobe("%0b %0b", a, b);
endChoose one
Answer choices
- A. 0 0
- B. 1 0
- C. 1 1
- D. The values are nondeterministic
