Problem Statement
This is a single multiple-choice question from the Electronics section of the assessment. How your answer is graded: your program reads no input. Print the option number ( 1 – 4 ) that you chose, on a single line. Q1. How many flip flops will be inferred for the following Verilog code? output reg q; input d; always @ (posedge clk) begin while(1) q <= d; end 1 2 3 Hardware inference is not possible