[&] You have an ARM template with a definition for a virtual machine named VM. You add a script extension resource to the template and want to associate it with the virtual machine. What should you name the extension resource?. - extensions/customscript1 - VM/customscript1 -- Correct - customscript1 - VM/extensions/customscript1 [&] Which DSC snippet will install IIS on a Windows 2016 server? - WindowsService WebManagementService { Name = "Web-Mgmt-Service" Ensure = "Present" } - WindowsFeature WebManagementService { Name = "Web-Mgmt-Service" Ensure = "Present" } - WindowsService WebServerRole { Name = "Web-Server" Ensure = "Present" } - WindowsFeature WebServerRole { Name = "Web-Server" Ensure = "Present" } -- Correct