Question: Using the techniques learned in the course so far, how would one improve this script. You can either describe in your own words on how
Using the techniques learned in the course so far, how would one improve this script. You can either describe in your own words on how you would improve the code or submit your code changes that would improve it. ### Start of Script ### function printa($a) {Write-Host "First Name: $a"} function printb($b) {Write-Host "Last Name: $b"} function printc($c) {Write-Host "Address: $c"} function printd($d) {Write-Host "City: $d"} function printe($e) {Write-Host "State: $e"} Write-Host "### User Information ###" printa "Nigel" printb "Nighthawk" printc "3820 Mundy Mill Rd" printd "Oakwood" printe "Georgia" ### End of Script ###
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
