PowerShell - Control Flow
What will be the output of this PowerShell code?
switch (3) {
1 { 'One' }
2 { 'Two' }
3 { 'Three' }
default { 'Other' }
}switch (3) {
1 { 'One' }
2 { 'Two' }
3 { 'Three' }
default { 'Other' }
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions