How to define a WAIT FOR statement?

How to define a WAIT FOR statement? Correct Answer WAIT FOR time_value;

WAIT FOR statement can be used by writing the keyword WAIT FOR followed by a time expression. This time expression can be a simple value of time followed by units of time. Since the time is a physical literal of VHDL and its base unit is nanosecond (ns). So, ns is mostly used. For example, WAIT FOR 100 ns; is the correct syntax for WAIT FOR statement.

Related Questions

Which among the following wait statement execution causes the enclosing process to suspend and then wait for an event to occur on the signals?
The wait statement “wait on” uses which type of data type?