Multiple choice technology programming languages

PowerShell passes objects from one command to another via what?

  1. IRC

  2. E-mail

  3. The pipeline

  4. All of the above

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

PowerShell uses the pipeline to pass objects from one command to another. The pipe symbol (|) connects commands, where the output objects of one command become the input objects of the next. This is different from traditional shells that pass text, not objects. IRC and E-mail are not used for inter-command communication in PowerShell.