Multiple choice technology programming languages

which of this is used to prevent any of the commands in the batch file from being displayed?

  1. @

  2. #

  3. $
  4. %

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

The '@' symbol before a command prevents that specific command from being echoed to the output. It's commonly used as '@echo off' at the start of batch files. The '#', '$', and '%' symbols have different meanings in batch files (% is for variables).