Podcast
Questions and Answers
Which command can be used to suspend execution for a specific period of time?
Which command can be used to suspend execution for a specific period of time?
- execute
- sleep (correct)
- at
- run
In what format can the delay period be specified when using the 'sleep' command?
In what format can the delay period be specified when using the 'sleep' command?
- Nanoseconds
- Minutes
- Milliseconds
- Seconds (correct)
What is the main difference between the 'sleep' command and the 'at' command?
What is the main difference between the 'sleep' command and the 'at' command?
- 'sleep' suspends execution for a specific period, while 'at' starts execution at a specific designated later time. (correct)
- 'sleep' and 'at' are both used to delay execution for a specific period of time.
- 'sleep' and 'at' are two different names for the same command.
- 'sleep' starts execution at a specific designated later time, while 'at' suspends execution for a specific period.