Skip to the selected question
ASIC.FYI

ASIC Question Bank

1,000+ hardware interview questions
DescriptionQ1090
Page ↗
Q1090DVDesignASIC interview problem

Nonblocking assignment (NBA) evaluation and update

TechniquesSystemVerilogScheduling regions
DifficultyEasy
TopicSV
LanguageSystemVerilog
Format4 choices
01

Problem

What does the strobe print?

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

Answer choices (4)