Multiple choice technology web technology

Seek the truth about setTimeOut():

  1. The statement(s) it executes run(s) only once.

  2. It pauses the script in which it is called.

  3. clearTimeOut() won't stop its execution.

  4. The delay is measured in hundredths of a second.

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

JavaScript's setTimeout() schedules a function to run once after a specified delay. It does not pause script execution (non-blocking) and its delay is measured in milliseconds, not hundredths of a second. clearTimeout() stops it if called before execution, making the first option true.