Question : You migrate a Windows Server .NET web application to Azure Cloud Services. You need enable trace logging for the application. Which two actions should you perform? Each correct answer presents part of the solution.
Correct Answer : Get Lastest Questions and Answer : Explanation: Let's take this one for instance: https://msdn.microsoft.com/en-us/library/azure/Dn482131.aspx#BKMK_step5
* Step 1 section I read: "diagnostics monitor is imported into a role by specifying an Import element with a moduleName of "Diagnostics" in the Imports section of the service definition file"
So A is a part of the answer.
* The other part is B. Step 2 explain how to add the diagnostic file in the solution and step 3 how to configure it.
So the answer is A,B ----------
* There are nothing to do in the service configuration file. You can also check the schema definition here: https://msdn.microsoft.com/en-us/library/azure/ee758710.aspx
Nothing related to logging. So C can't be part of the solution
* D is debatable I thing, but only 2 actions are asked, and if we don't provide A and B, D has no effects
* E: yes we can configure the logging in web.config. But it means that every time we have to do a change, we must redeploy.
Question : You administer a cloud service named contosoapp that has a web role and worker role. Contosoapp requires you to perform an in-place upgrade to the service. You need to ensure that at least six worker role instances and eight web role instances are available when you apply upgrades to the service. You also need to ensure that updates are completed for all instances by using the least amount of time. Which value should you use with each configuration? To answer, drag the appropriate value to the correct configuration. Each value may be used once, more than once, or not at all. 1. Value1 -1 Value2- 4 Value3- 8 2. Value1 -3 Value2- 6 Value3- 9 3. Access Mostly Uused Products by 50000+ Subscribers 4. Value1 -8 Value2- 9 Value3- 6 5. Value1 -12 Value2- 9 Value3- 3
Explanation: 3 upgrade domains = 4 Web role instances each total = 12, 4 down while upgrading, 8 running as per the requirement, then the next 4 are upgraded and then the next 4
3 upgrade domains = 3 Worker role instances each total = 9, 3 down while upgrading, 6 running as per the requirement
Question : Your network includes a legacy application named LegacyApp. The application only runs in the Microsoft .NET 3.5 Framework on Windows Server 2008. You plan to deploy to Azure Cloud Services. You need to ensure that LegacyApp1 will run correctly in the new environment. What are two possible ways to achieve this goal? Each correct answer presents a complete solution.
A. Upload a VHD with Windows Server 2008 installed.
B. Deploy LegacyApp1 to a cloud service instance configured with Guest OS Family 2.
C. Deploy LegacyApp1 to a cloud service instance configured with Guest OS Family 1.
D. Deploy LegacyApp1 to a cloud service instance configured with Guest OS Family 3.
Correct Answer : Get Lastest Questions and Answer : Explanation: Guest OS Family 1 and Guest OS Family 2 supports .NET 3.5 and .Net 4.0. Guest OS Family 3 and Guest OS Family 4 supports .NET 4.0 and .Net 4.5. http://msdn.microsoft.com/en-us/library/azure/ee924680.aspx The answer given is correct, but note that Guest OS Family 1 has since been discontinued.