Skip to the selected question
ASIC.FYI

ASIC Question Bank

1,000+ hardware interview questions
DescriptionQ001
Q001DVDesignASIC interview problem

Blocking and nonblocking assignment

TechniquesSystemVerilogBasic scheduling
DifficultyEasy
TopicSystemVerilog
LanguageSystemVerilog
Format4 choices
01

Problem

What values are printed by display and strobe, in that order?

Starting declarationSystemVerilog
logic a;
initial begin
  a = 0;
  a <= 1;
  $display("D=%0b", a);
  $strobe("S=%0b", a);
end
02

Answer choices (4)