

MCQOPTIONS
Saved Bookmarks
1. |
A VARIABLE y is declared of STD_LOGIC_VECTOR type of 4 bits, if you want to assign 1001 to y, then what is the write assignment statement? |
A. | y <= “1001” |
B. | y := “1001” |
C. | y <= ‘1’, ‘0’, ‘0’, ‘1’ |
D. | y => “1001” |
Answer» C. y <= ‚Äö√Ñ√∂‚àö√ë‚àö‚â§1‚Äö√Ñ√∂‚àö√ë‚àö¬•, ‚Äö√Ñ√∂‚àö√ë‚àö‚â§0‚Äö√Ñ√∂‚àö√ë‚àö¬•, ‚Äö√Ñ√∂‚àö√ë‚àö‚â§0‚Äö√Ñ√∂‚àö√ë‚àö¬•, ‚Äö√Ñ√∂‚àö√ë‚àö‚â§1‚Äö√Ñ√∂‚àö√ë‚àö¬• | |