You need to ensure that developers can connect to a Microsoft Azure role by using RDP.
What should you do?
Answer : A
Explanation: In case you dont want to use the RDP certificate created by Windows Azure
Tools and want to use a custom certificate instead, the following steps will guide you.
These steps can also be used in case package is not being published from Visual Studio rather it is being built locally, saved in either Local Machine's Drive or Windows Azure Blob
Storage and subsequently published from there.
Here are the steps which are required to get pass the publishing error which you might be running into. You would need to upload the Certificate with Private Key to the portal (when
Visual Studio is used this is done in the background).
Detailed steps.
1. In Visual Studio, go to the solution which is being developed.
2. Right click the Web Project -> Configure Remote Desktop -> click on View to see
Certificate details (Since I dont have a custom certificate I will use one create by Windows
Azure Tools itself)
3. Go to Details tab on Certificate -> Click Copy to file.. -> Next -> Select Yes, export the private key -> Next -> Continue with default setting and create a password when asked
(please refer below screenshots)
4. These steps will generate a .PFX file for this certificate. Now we need to upload this certificate to the portal (for the respective cloud service)
5. Go to the Azure Management Portal -> Go to the Cloud Service in question ->
Certificates Tab -> Upload the newly created certificate (.PFX file)
Note:
* The certificates that you need for a remote desktop connection are different from the certificates that you use for other Azure operations. The remote access certificate must have a private key.
* Microsoft Azure uses certificates in three ways:
/ Management certificates Stored at the subscription level, these certificates are used to enable the use of the SDK tools, the Windows Azure Tools for Microsoft Visual Studio, or the Service Management REST API Reference. These certificates are independent of any cloud service or deployment.
/ Service certificates Stored at the cloud service level, these certificates are used by your deployed services.
/ SSH Keys Stored on the Linux virtual machine, SSH keys are used to authenticate remote connections to the virtual machine.
Reference: How to use Custom Certificate for RDP to Windows Azure Roles http://blogs.msdn.com/b/cie/archive/2014/02/22/how-to-use-custom-certificate-for-rdp-to- windows-azure-roles.aspx
You need to ensure that the transcode.exe utility is installed before the worker role starts.
How should you implement the startup task? (To answer, drag the appropriate values to the correct element or attribute. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
Answer :
You need to ensure that all the MVC controllers are secure.
Which code segment should you use as the body for the CreateController method in
AdminVerifierFactory.cs?
Answer : C
The designer for the website gave you the following image as the design for the page.
Answer :
You need to ensure that developers can connect to a Windows Azure role by using RDP.
What should you do?
Answer : D
You need to maximize performance of video delivery.
Which code segment should you use as the body of the GetVideoStream function in the
Video-Controller class?
Answer : D
The transcode.exe utility activates its license online when it is installed.
You need to ensure that the registration of the transcode utility is handled as specified in its license.
Which method should you add to the TranscodeWorkerRole class?
Answer : D
You need to ensure that all the MVC controllers are secure.
Which code segment should you use as the body for the CreateController method in
AdminVerifierFactory.es?
Answer : C
Customers download videos by using HTTP clients that support various content encodings.
You need to configure caching on the DownloadVideo action to maximize performance.
Which attribute should you add?
Answer : E
You are creating a new authentication system that uses an HTTP header value.
The existing authentication system must continue to operate normally.
You need to implement the custom authentication.
What should you do? (Each correct answer presents a complete solution. Choose all that apply.)
Answer : CD
You need to ensure that the transcode.exe utility is installed before the worker role starts.
You have the following markup:
Answer :
Explanation:
Target 1: simple -
Target 2:Environment -
Target 3:Variable -
Target 4: VariableTarget 5: Environment
Customers download videos by using HTTP clients that support various content encodings.
You need to configure caching on the DownloadVideo action to maximize performance.
Which attribute should you add?
Answer : B
You need to ensure that all customers can delete videos regardless of their browser capability.
Which code segment should you use as the body of the SendAsync method in the
DeleteHandler class?
Answer : B Topic 4, Mixed Questions Set 1
You are developing an ASP.NET MVC application by using Visual Studio 2012.
The application throws and handles exceptions when it runs.
You need to examine the state of the application when exceptions are thrown.
What should you do?
Answer : A
You are developing an ASP.NET MVC application.
The application provides a RESTful API for third-party applications. This API updates the information for a contact by embedding the information in the URL of an HTTP POST.
You need to save the Contact type when third-party applications use the EditContact method.
Which code segment should you use? {Each correct answer presents a complete solution.
Choose all that apply.)
Answer : BD
Explanation: Basics of RESTful services:
REST stands for Representational State Transfer, it is a simple stateless architecture that runs over HTTP where each unique URL is representation of some resource. There are four basic design principles which should be followed when creating RESTful service:
* Use HTTP methods (verbs) explicitly and in consistent way to interact with resources
(Uniform Interface), i.e. to retrieve a resource use GET, to create a resource use POST, to update a resource use PUT/PATCH, and to remove a resource use DELETE.
Etc.
Have any questions or issues ? Please dont hesitate to contact us