A respeito de conceitos de Power Shell, julgue o item subse...
A respeito de conceitos de Power Shell, julgue o item subsecutivo.
Considere-se o código Power Shell a seguir.
$x = 30
$y = 10
if($x -eq 30){
if($y -eq 10) {
write-host(“X = 30 and Y = 10”)
}
}
A execução do código Power Shell precedente terá o seguinte resultado.
X = 30 and Y = 10