InterviewSolution
Saved Bookmarks
| 1. |
Is There A Latch In The Following Code? What If The “sel” Value Is “x”. What Will Be The Simulation Result? Always @ ( En ) Begin Dout = 0 Case ( Sel ) 0: Dout = In ; Default : Dout = 1; End |
|
Answer» No There is no latch as the default statement is present and the OUTPUT will be GOVERN by the case statement. No There is no latch as the default statement is present and the output will be govern by the case statement. |
|