1.

A component has 3 ports- two inputs(a and b) and one output(y). Which of the following statement is for the positional mapping of the component?

A. LABEL : my_component PORT MAP (l, m, n);
B. LABEL : my_component PORT MAP (y, a);
C. LABEL : my_component PORT MAP (l => a, m => b, n => y);
D. LABEL : my_component PORT MAP(a, b, y>= a);
Answer» B. LABEL : my_component PORT MAP (y, a);


Discussion

No Comment Found