Skip to the selected question
ASIC.FYI

ASIC Question Bank

1,000+ hardware interview questions
DescriptionQ218
Page ↗
Q218DVDesignASIC interview problem

Delayed nonblocking assignments

TechniquesSystemVerilogAdvanced scheduling
DifficultyHard
TopicSV
LanguageSystemVerilog
Format4 choices
01

Problem

Which transition history for a is correct?

Starting declarationSystemVerilog
int a = 0;
initial begin
  #1 a <= #5 1;
  #2 a <= #2 2;
end
02

Answer choices (4)