Q.1.
The correct syntax for using EXIT in a loop is ___________
Q.2.
FOR loop uses a loop index, the type of loop index is _________
Q.3.
Where do we declare the loop index of a FOR LOOP?
Q.4.
A FOR loop is inside a WHILE loop. Inside the FOR loop, the EXIT statement is used in such a way that after 4 iterations, it will execute. After the execution of EXIT statement, the control will be passed ________
Q.5.
A for loop is initiated as given below, in total how many iterations will be there for the FOR loop? FOR i IN 0 TO 5 LOOP
Q.6.
All types of FOR loops are synthesizable.
Q.7.
What is the use of EXIT statement in a loop?
Q.8.
On what side of the assignment statement, one can use a loop index?
Q.9.
A WHILE loop is more flexible than FOR loop.
Q.10.
The FOR loop is not synthesizable if it contains ______ statement.
Q.11.
Which logic circuit is described in the following code? LIBRARY IEEE; USE IEEE.std_logic_1164.all;   ENTITY system IS GENERIC (l : INTEGER := 3); PORT ( a, b : IN STD_LOGIC_VECTOR ( l DOWNTO 0); c : IN STD_LOGIC; x : OUT STD_LOGIC_VECTOR (l DOWNTO y : OUT STD_LOGIC); END system; ARCHITECTURE design OF system IS BEGIN PROCESS (a, b, c) VARIABLE z : STD_LOGIC_VECTOR ( l DOWNTO 0); BEGIN z(:= c; FOR I IN 0 TO l LOOP x(i) &lt; = a(i) XOR b(i) XOR z(i); z(i+&lt;= (a(i) AND b(i)) OR (a(i) AND z(i)) OR (b(i) AND z(i)); END LOOP; y <= z(l); END PROCESS; END design;