Multiple choice technology

What is the command to get help information for a command (eg. dir)?

  1. man dir

  2. help dir

  3. dir ?

  4. Both 2 and 3

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

Windows/DOS commands typically support 'help ' or ' /?' syntax for help information. The '?' is a standard help flag in Windows command-line utilities. Unix systems use 'man' instead. The question asks about the pattern, and both 'help dir' and 'dir ?' represent Windows-style help approaches.