Question.2
Which is the structurally correct syntax to define a Verilog module boundary?
Select Answer
module my_design { input a; output b; assign b = a; }
module my_design ( input a, output b ); assign b = a; endmodule
module my_design ( input a, output b ); assign b = a; end module
module my_design ( input a, output b ); assign b = a; return; endmodule