Skip to the selected question
ASIC.FYI

ASIC Question Bank

1,000+ hardware interview questions
DescriptionQ032
Page ↗
Q032DVASIC interview problem

Fork-join_none

TechniquesSystemVerilogParallel process control
DifficultyMedium
TopicVerification Utilities
LanguageSystemVerilog
Format4 choices
01

Problem

What is the guaranteed print order?

Starting declarationSystemVerilog
initial begin
  fork
    $display("child");
  join_none
  $display("parent");
  #0;
end
02

Answer choices (4)