DescriptionQ238
Q238DesignDVIntelASIC interview problem
Predict Priority from If and Case Statements
TechniquesDVDesignSVA
DifficultyEasy
TopicRTL Design
LanguageSystemVerilog
Format4 choices
01
Problem
A decoder has overlapping conditions. One version uses `if (c0) ... else if (c1) ...`; another uses a `case` statement whose legal input encodings are asserted mutually exclusive. Which statement is correct?
02
