Question.7
When attempting to execute this code, what is the expected result?
module size_test(input [1:0] a, output y); wire [1:0] w; not u1(w, a); assign y = w[1]; endmodule
Select Answer
y = ~a[1]
y
~a[1]
y = z
z
y = ~a[0]
~a[0]
Elaboration Error