PrepAway - Latest Free Exam Questions & Answers

Author: seenagape

Which two actions should you perform?

You are implementing an ASP.NET Web application. Users will authenticate to the application with
an ID. The application will allow new users to register for an account. The application will generate
an ID for the user based on the users full name. You need to implement this registration
functionality. Which two actions should you perform? (Each correct answer presents part of the
solution. Choose two.)

Which reference item should you add to the XAML workflow library in order for it to compile successfully?

In a Microsoft Dynamics CRM on-premises environment, you are creating a custom XAML
workflow library in a XAML workflow project by using Microsoft Visual Studio. You add a
new XAML workflow activity item to the project and specify a name for the process you are
creating. Which reference item should you add to the XAML workflow library in order for it to
compile successfully?

Which code segment should you use to update the social status?

You are developing an application to update a users social status. You need to consume
the service using Windows Communication Foundation (WCF). The client configuration is
as follows. <system.serviceModel> <bindings> <webHttpBinding> <binding
name=”SocialConfig”> <security mode=”TransportCredentialOnly”> <transport
clientCredentialType=”Basic” realm=”Social API” /> </security> </binding>

</webHttpBinding> </bindings> <client> <endpoint address=”http://contoso.com”
binding=”webHttpBinding” bindingConfiguration=”SocialConfig” contract=”ISocialStatus”
name=”SocialClient” /> </client> </system.serviceModel> The service contract is defined as
follows. [ServiceContract] public interface ISocialStatus { [OperationContract]
[WebInvoke(UriTemplate = “/statuses/update.xml?status={text}”)] void UpdateStatus(string
text); } Which code segment should you use to update the social status?