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 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? Correct Answer LABEL : my_component PORT MAP (l, m, n); ; c) LABEL : my_component PORT MAP (l => a, m => b, n => y); d) LABEL : my_component PORT MAP(a, b, y>= ]; View Answer]
A component can be instantiated by using positional or nominal mapping. In case of positional mapping, arguments are written, in this case, 3 arguments among which first two must be taken as input and last one is taken as output port. SO, only option a is using the positional mapping in which l and m corresponds to a and b respectively and n corresponds to y.
মোঃ আরিফুল ইসলাম
Feb 20, 2025
