Thanks Dave and shimonc!!
I have a follow-up question.
As per LRM,
Fork-join_none: The parent process continues to execute concurrently with all the processes spawned by the fork.The spawned processes do not start executing until the parent thread executes a blocking statement or terminates.
In the above example,
#1 delay before fork-join_none can be treated as a blocking statement to start execution of spawned processes (ie. $display(“j inside fork-join_none”)) or not?