write the output
30 print "welcome to san academy"pls help
Answers
Answered by
0
Answer:
Write-Output generates output. This output can go to the next command after the pipeline or to the console so it's simply displayed. The Cmdlet sends objects down the primary pipeline, also known as the "output stream" or the "success pipeline." To send error objects down the error pipeline, use Write-Error
Explanation:
Write-Output generates output. This output can go to the next command after the pipeline or to the console so it's simply displayed. The Cmdlet sends objects down the primary pipeline, also known as the "output stream" or the "success pipeline." To send error objects down the error pipeline, use Write-Error
Similar questions