- Home
- Server Administration
- Windows
- Developing Microsoft Azure Solutions
6.
Which of the following changes require you to update your DNS settings if you are
using an A record to map your custom domain to your website? (Choose all that apply.)
- A.Deleting and re-adding the SSL certificate
- B.Deleting the website and re-deploying
- C.Enabling SSL after configuring the A record
- D.Switching your web hosting plan to Free tier and then back to Standard
- Answer & Explanation
- Report
Answer : [A, B, C, D]
Explanation :
Explanation :
A. Correct: This will likely yield a new IP address for the website, so the A record
needs to be updated. B. Correct: This will likely yield a new IP address for the website, so the A record needs to be updated. C. Correct: This will likely yield a new IP address for the website, so the A record needs to be updated. D. Correct: This will likely yield a new IP address for the website, so the A record needs to be updated. |
7.
Which of the following tools would you not use to diagnose a problem on a production
site to avoid disturbing visitors while diagnosing?
- A.Log streaming
- B.Remote debugger
- C.Event log
- D.Application log
- Answer & Explanation
- Report
Answer : [B]
Explanation :
Explanation :
A. Incorrect: This will not disturb visitors since log-streaming displays logs that are
collected in the background. B. Correct: When you are stopped in a breakpoint, this will stop the website from responding to all requests, and therefore certainly disturb visitors. C. Incorrect: This will not disturb visitors. Event logs are collected in the background without interfering with requests. D. Incorrect: This will not disturb visitors. Application logs are collected in the background without interfering with requests. |
8.
With endpoint monitoring, you can perform all of the following except what?
- A.Configure alerts to send automated emails
- B.Auto-scale
- C.Perform outside-in monitoring
- D.Monitor from multiple geographic locations
- Answer & Explanation
- Report
Answer : [B]
Explanation :
Explanation :
A. Incorrect: The sending of automated alert emails can be enabled along with
endpoint monitoring. B. Correct: Auto-scale is not related to endpoint monitoring. C. Incorrect: Outside-in monitoring can be enabled along with endpoint monitoring. D. Incorrect: Monitoring from multiple geographic locations can be enabled along with endpoint monitoring. |
9.
Out of the box, where can website diagnostic logs be stored? (Choose all that apply.)
- A.Website file system
- B.Azure Storage
- C.SQL Database
- D.Email
- Answer & Explanation
- Report
Answer : [A, B]
Explanation :
Explanation :
A. Correct: The file system is a storage location for diagnostic logs. B. Correct: Azure Storage is a storage location for diagnostic logs. C. Incorrect: This is not a valid location for diagnostic logs out of the box. D. Incorrect: This is not a valid location for diagnostic logs. |
10.
Which of the following is NOT true about WebJobs?
- A.They can only be triggered by a queue message
- B.They must be deployed with a web application.
- C.They can only be written in C#.
- D.All of the above.
- Answer & Explanation
- Report
Answer : [D]
Explanation :
Explanation :
A. Incorrect: WebJobs can be triggered by both queue messages and blobs. B. Incorrect: WebJobs can be created as standalone executables or scripts. C. Incorrect: WebJobs can be written in multiple languages. D. Correct: All options in A, B, and C are not true. |