56. Control Flow Basics

Question.6

If this block dynamically evaluates, what resolves directly to out?

always @(*) begin
    case (2'b10)
        2'b10: out = 1;
        2'b10: out = 0;
    endcase
end

 

Need Help? Refer to the Quick Guide below

Select Answer