🎴 Flashcard Mode
PowerShell Commands and Scripting
Card1 / 20
Mastered0
Review0
QuestionClick to flip
Which command is used to print the output of a CmdLet?
AnswerClick to flip back
A
None of the above
💡 Explanation:
PowerShell CmdLets automatically send output to the display console by default - no explicit print command is needed. Out-Host is technically what displays output, but it's used implicitly; you don't call it separately to 'print' output.