Multiple choice technology operating systems

Using a _____ symbol you can redirect standard output to a file.

  1. ^

  2. >

  3. -->

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

The > symbol is used for output redirection, sending the standard output of a command to a file instead of the screen. For example, "DIR > listing.txt" saves the directory listing to a file. The | symbol is for piping (connecting command output to another command's input), ^ is the escape character, and --> is not a valid redirection operator.