

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is the right way to leave a port unconnected? |
A. | L1 : my_component PORT MAP(a); a <= OPEN; |
B. | L1 : my_component PORT MAP(a := OPEN); |
C. | L1: my_component PORT MAP(a => OPEN); |
D. | L1 : my_component PORT MAP(a); a := OPEN; |
Answer» D. L1 : my_component PORT MAP(a); a := OPEN; | |