PowerShell - Control Flow
What will be the output of this PowerShell script?
$i = 4
while ($i -ge 0) {
Write-Output $i
$i -= 3
}
$i = 4
while ($i -ge 0) {
Write-Output $i
$i -= 3
}
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions