Question 1
Question
You are running Fetch-based reports in Microsoft Dynamics CRM.
Which component should you add to the computer that has Microsoft SQL Server
Reporting Services (SSRS) installed?
Answer
-
Microsoft Dynamics CRM Administrative Reports
-
Microsoft Dynamics CRM Reporting Extensions
-
SQL Server Configuration Manager
-
Microsoft Dynamics CRM Report Authoring Extension
Question 2
Question
Which Microsoft Dynamics CRM web resource is used to validate data that is entered in a texbox?
Question 3
Question
Which component defines the navigation areas for Microsoft Dynamics CRM for Outlook and Microsoft Dynamics CRM for tablets?
Answer
-
SiteMap
-
Application ribbon
-
Style Sheet (CSS)
-
Service endpoint
Question 4
Question
Which object is used to retrieve the root URL for an organization?
Answer
-
GetClientUrl
-
PrependOrgName
-
GetObject
-
GetQueryStringParameters
Question 5
Question
What is the correct term for a set of components that can be transported between different Microsoft Dynamics CRM organizations?
Answer
-
Solution
-
User settings
-
Extensions
-
Data maps
Question 6
Question
In Microsoft Dynamics CRM, which feature is included as part of the application framework model? (REVISAR)
Question 7
Question
You are making a manual edit to the Account entity command bar.
Which section of the file customizations.xml for the Account entity should you update?
Answer
-
FormXml
-
SiteMap
-
RibbonDiffXml
-
EntityInfo
Question 8
Question
You are trying to obtain an Account record from Microsoft Dynamics CRM.
You do NOT know the name of the Account record.
Which method should you use to discover the Account record?
Answer
-
RetrieveMultiple
-
Create
-
Retrieve
-
Update
Question 9
Question
Which three actions can be performed on entity records when you use the Open Data Protocol (OData)? (Selecciona 3)
Answer
-
Count
-
Execute
-
Create
-
Delete
-
Update
Question 10
Question
You need to programmatically retrieve the current display name of several custom entities by using a Simple Object Access Protocol (SOAP) endpoint.
Which endpoint should you use?
Question 11
Question
You are updating an Account record.
Which code segment should you use to set the primary contact value?
Answer
-
account.account_primary_contact.Id = new Guid("38C815A9-E532-E311-98BE-6C3BE5BDAA70");
-
account.PrimaryContactId = new EntityReference
{
Id = new Guid("8C539CFE-DB57-E311-8B0E-6C3BE5A8017C"),
LogicalName = "conctact"
};
-
contact = new Contact{
Id = new Guid("8C539CFE-DB57-E311-8B0E-6C3BE5A8017C")
};
account.PrimaryContactId = contact;
-
account.PrimaryContactId = new Guid("8C539CFE-DB57-E311-8B0E-6C3BE5A8017C");
Question 12
Question
You are working on a Microsoft Dynamics CRM on-premises deployment. Internet-Facing Deployment (IFD) is NOT configured. Which EndpointAccessType value should you use to access the organization's service endpoint?
Answer
-
Default
-
Intranet
-
Passport
-
Internet
Question 13
Question
You need to return system errors by leveraging the Windows Communication Framework (WCF). Which code segment should you include in your catch statement?
Question 14
Question
Which statement describes the Organization Service?
Answer
-
an Open Data Protocol (OData) web service that provides access to the business data for your organization by using a Representational State Transfer (REST) API
-
a web service that provides information about the organizations that are available on the Microsoft Dynamics CRM server by using the Simple Object Access Protocol (SOAP)
-
the public certificate that is required to configure the Windows Azure AppFabric Access Control Service for Microsoft Dynamics CRM integration
-
a web service that provides access to the business data and metadata for your organization by using the Simple Object Access Protocol (SOAP)
Question 15
Question
You are working on a Microsoft Dynamics CRM deployment in a single organization. Which service provides the information required to access the organization endpoint?
Question 16
Question
In a Microsoft Dynamics CRM environment, you have the following code segment. Line numbers included for reference only.
What is the purpose of line 09 in this code segment?
Answer
-
Verifies the identity of the user based on their Active Directory telephone number.
-
It is used for Lync integrated authentication.
-
locates the user record based on the incoming Caller ID from the organizations Private Branch exchange (PBX).
-
It is used to impersonate the identity of another user who is using the telephone number to locate the User ID.
Question 17
Question
You are developing a plug-in that will be used in both Microsoft Dynamics CRM online and on-premises environments. Which trust level is required?
Question 18
Question
You are deploying a Microsoft Dynamics CRM Online plug-in on a production environment. Which storage system should you use?
Question 19
Question
Which two plug-in stages that are available to developers are always executed during the database transaction? (Seleccionar 2)
Answer
-
Pre-operation
-
MainOperation
-
Pre-validation
-
Post-operation
Question 20
Question
You are working with entity classes in a Microsoft Dynamics CRM plug-in. You use late binding. Which entity attribute name should you use?
Answer
-
DisplayName
-
DisplayCollectionName
-
LogicalName
-
SchemaName
Question 21
Question
What is a full trust plug-in?
Answer
-
a plug-in that is registered with a third-party code-signing authority
-
a plug-in that is registered inside the sandbox
-
a plug-in that is registered for use with Microsoft Dynamics CRM Online only
-
a plug-in that is registered outside the sandbox
Question 22
Question
How should you register a plug-in for use in multiple organizations and in multiple stages?
Answer
-
Register the plug-in once for all organizations on the server and create a single configuration that will be inherited by all plug-in stages.
-
Register the plug-in for each organization individually on the server and create a single configuration that will be inherited by all plug-in stages.
-
Register the plug-in for each organization individually on the server and configure each stage that the plug-in will operate in separately.
-
Register the plug-in once for all organizations on the server and configure each stage that the plug-in will operate in separately.
Question 23
Question
You are creating a form and workflows for the Credit Status custom entity. The Salesperson role will use a form to review active Credit Status information that the business requires. This information cannot be changed by the Sales users. All users currently have write and append privileges to the Credit Status custom entity.
You need to ensure that users in the Salesperson role cannot edit the Credit Status entity fields.
Which form type and permissions should you use?
Answer
-
Use the Undefined form and modify the Salesperson role to remove the append privilege on credit status.
-
Use the Role-based form and modify the Salesperson role to remove the write privilege on credit status.
-
Use the Disabled form and modify the Salesperson role to remove the write privilege on credit status.
-
Use the Read-only form and modify the Salesperson role to remove the append privilege on credit status.
Question 24
Question
You are creating client-side event-triggered handlers.
What is the maximum number of event handlers that you can specify for each event?
Question 25
Question
Which type is NOT a valid type for a loan query string parameter?
Answer
-
Boolean
-
SafeString
-
UnsignedInt
-
Optionset
Question 26
Question
Which type of code will execute in a Microsoft Dynamics CRM OnLoad form event? (REVISAR)
Answer
-
C# and Visual Basic .NET
-
CSS
-
JavaScript
-
HTML
Question 27
Question
Which two conditions must be met before the OnChange event for a field is executed? (Selecciona 2)
Answer
-
The field detects keystrokes.
-
The field loses focus.
-
The value of the field is changed by a JavaScript function.
-
The value of the field is changed by the user.
Question 28
Question
Which execution context object method returns a value that indicates the order in which the
event handler is executed?
Answer
-
getSharedvariable
-
getEventSour
-
getDepth
-
getContext
Question 29
Question
You develop JavaScript code that adds a function to a form’s OnSave event by using the addOnSave method. Where is the function placed in the form event pipeline?
Answer
-
A random position in the form event pipeline
-
A position in the form event pipeline that is determined by a parameter value of the addOnSave method
-
The end of the form event pipeline
-
The beginning of the form event pipeline
Question 30
Question
What is the result of setting event dependencies for a custom JavaScript event?
Answer
-
The system prevents the custom event from executing if the defined fields are removed from the form.
-
The values of the defined fields are sent to the custom event as parameters.
-
The defined functions are executed after the custom event.
-
The system prevents users from removing the defined fields from the form.
Question 31
Question
Which deployment type is supported for custom XAML workflows?
Question 32
Question
You develop custom activities that must be included in a Microsoft Dynamics CRM workflow process.
You need to ensure that the activities are available in the workflow steps.
What should you do next?
Answer
-
define the variable
-
reference the Windows Workflow Foundation activity library
-
use the Plug-in Registration tool
-
define the input argument
Question 33
Question
You need to create a series of pages to allow users to enter their usernames and birthdates when prompted. Which process type should you use?
Answer
-
Dialogs
-
Actions
-
Business process flow
-
Workflows
Question 34
Question
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?
Answer
-
Link Child Dialog
-
Create Dialog
-
Start Child Workflow
-
Assign Record
Question 35
Question
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?
Answer
-
System.Runtime.InteropServices
-
System.Reflection
-
System.Runtime.Serialization
-
System.Runtime.CompilerServices
Question 36
Question
To which unit of a dialog do you add prompts and responses?
Answer
-
Variable
-
Business process flow
-
Page
-
Action
Question 37
Question
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? (REVISAR)