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 action type should you use?
You are creating an action in Microsoft Dynamics CRM. You need to call a dialog rule that
will be executed as a new process from the parent process. Which action type should you
use?
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?
Which types of associations can you add to the product change case?
You create a new product change case for an item. You need to add associations to the
product change case. Which types of associations can you add to the product change
case?
which unit of a dialog do you add prompts and responses?
To which unit of a dialog do you add prompts and responses?
You need to log health-monitoring events with severity level of error to the Windows application event log
You deploy an ASP.NET application to an IIS server. You need to log health-monitoring events with
severity level of error to the Windows application event log. What should you do?
Which HTTP verb should you include?
You are developing code that uses an XMLHttpRequest object to update a Microsoft
Dynamics CRM record by using the Representational Stat Transfer (REST) endpoint. You
need to ensure that only the specified fields in the request get updated. Which HTTP verb
should you include?
Which code segment should you include at line 03 to create the new Account record?
You write the following code segment to create an Account record by using jQuery and the
Representational State Transfer (REST) endpoint. (Line numbers included for reference
only.) The variable ODataPath is set correctly. Which code segment should you include at
line 03 to create the new Account record?
Which code segment should you use?
You are creating an ASP.NET Web site. The site is configured to use Membership and Role
management providers. You need to check whether the currently logged-on user is a member of a
role named Administrators. Which code segment should you use?