When printing a string on multiple lines in powershell, what is the correct syntax?
Write-Host @"line 1
line 2"@
A powershell script is comparing two integers to determine if a is bigger than b. Which command is correct?
if ($a -gt $b)…
Which of the following is not a valid way to start a function in Powershell
function calc("a") {
What is the correct syntax to print a string with a variable in PowerShell?
Write-Host "My name is $name"
What environment is commonly used for PowerShell script development
Integrated Scripting Environment
What is a powershell equivalent to the print command?
Write-Output
What additional libraries need to be installed on windows to allows the creation of Powershell scripts
None
In PowerShell, when creating a conditional statement with 3 conditions what is the correct order of commands?
if <condition>
elseif <condition>
else <condition>