IT認証試験問題集
毎月、GOWUKAKUは1500人以上の受験者が試験準備を助けて、試験に合格するために受験者にご協力します
 ホームページ / MB-500 問題集  / MB-500 問題練習

Microsoft MB-500 問題練習

Microsoft Dynamics 365: Finance and Operations Apps Developer Exam 試験

最新更新時間: 2024/04/09,合計99問。

【2024桜まつりキャンペーン】:MB-500 最新真題を買う時、日本語版と英語版両方を同時に獲得できます。

実際の問題集を練習し、試験のポイントを了解し、テストに申し込むするかどうかを決めることができます。

さらに試験準備時間の35%を節約するには、MB-500 問題集を使用してください。

 / 3

Question No : 1
You are using the SysTest framework to test code in Visual Studio.
You need to create a unit test class.
Which three attributes can you use to create the class? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

正解:
Explanation:
The SysTest framework now supports the major test attributes in the adaptor to be on par with the MSTest framework adaptor. This includes attributes like Category, Owner, Priority, and Test Property.
Note:
The Priority attribute SysTestPriority, which requires an integer value, is now available. A priority can only be specified once, but is supported on both the class and method level, with method level taking precedence over class level.
The Owner attribute, SysTestOwner, has also been added. This attribute was technically already supported for filtering in the Test Toolbox window, but the attribute itself was missing in X++. Similar to Priority, an owner can only be specified once and is supported on both the class and method level, with the method level taking precedence.
SysTestProperty specifies a property and a value (two strings), and can now be used in the Test Toolbox window in Visual Studio. Test Property can be specified multiple times, and can exist on both the class and method level.
Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/perf-test/systest-filtering

Question No : 2
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You must extend the class SalesLineType and add a new method that returns the day of week for the system’s current date as an integer value.
You need to create a class that extends SalesLineType and adds the new method.
Solution: You create the following code:



Does the solution meet the goal?

正解:

Question No : 3
HOTSPOT
You are a Dynamics 365 Finance developer.
You need to export data from all products into a data package every day at 2 a.m. You open the Data Management workspace.
How should you complete the process? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.



正解:


Explanation:
Box 1: Export
Select the Import or Export (in this case) tile to create a new data project.
Box 2: Data source
Enter a valid job name, data source, and entity name.
Box 3: Data project page
O the Data project page, select Create recurring data job.
Box 4: Setup authorization policy
In the Set up authorization policy tab, enter the application ID that was generated for your application, and mark it as enabled.

Question No : 4
DRAG DROP
A company uses Dynamics 365 Unified Operations.
Client companies require weekly updates for services performed. You create data entity by using the Data Entity wizard.
You need to expose a list of services to external business companies.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.



正解:


Explanation:
Step 1: Synchronize the database
Entities are created as views in Microsoft SQL Server, and staging tables are also added.
Therefore, you must sync a database when you build entities.
Step 2: Build the solution
Build your project
In Solution Explorer, right-click your project, and then click Properties.
Change the value of the Synchronize database on build property to True, and then click OK. This property must be set only one time per project.



On the Visual Studio toolbar, click Build > Build Solution to build the project.
Step 3: Configure properties for the data entity After build visually validate and customize an entity

Question No : 5
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You create a new form in a project.
You need to display tabs in a vertical alignment.
Solution: Apply the Table of Contents pattern.
Does the solution meet the goal?

正解:
Explanation:
Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/table-of-contents-form-pattern

Question No : 6
You are a Dynamics 365 Finance developer. You create a key performance indicator (KPI) that will enable users to be able to see the total sales per region. You create a tile named SalesRegion and link the KPI to the tile.
You need to ensure that users can view this tile on a form in the user interface.
What should you do?

正解:
Explanation: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/workspace-form-pattern

Question No : 7
HOTSPOT
You are creating entities that will have unmapped fields.
You need determine which types of unmapped fields to use.
Which field types should you use? To answer, drag the appropriate field types to the correct requirements. Each field type 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. NOTE: Each correct selection is worth one point.



正解:


Explanation:
Box 1: Computed
Computed field: Value is generated by an SQL view computed column.
During read, data is computed by SQL and is fetched directly from the view.
Box 2: Computed
Box 3: Virtual
Virtual field:
Is a non-persisted field.
Is controlled by custom X++ code.
Read and write happens through custom X++ code.
Virtual fields are typically used for intake values that are calculated by using X++ code and can't be replaced by computed columns.
Box 4: Virtual
Virtual field is a non-persisted field.

Question No : 8
You are Dynamics 36S Finance developer.
You need to explain the performance advantages of the different concurrency models.
What are three performance advantages of optimistic concurrency control over pessimistic concurrency control? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

正解:
Explanation:
Optimistic Concurrency only locks records from the time when the actual update is performed.
Following are the advantages of using OCC:
Records remain available for other processes to update if they have been selected from the database but haven't yet been updated.
Records are locked for a shorter length of time.
Fewer resources are used to hold the locks during the update process.
Reference: https://docs.microsoft.com/en-us/dynamicsax-2012/developer/optimistic-concurrency-control

Question No : 9
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review/ screen.
You create a new form in a project.
You need to display tabs in a vertical alignment.
Solution: Apply the Operational Workspaces pattern.
Does the solution meet the goal?

正解:
Explanation:
Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/section-tabbed-list-subpattern

Question No : 10
You are a Dynamics 365 Finance developer. You need to create an extension class .
Which action should you perform?

正解:
Explanation:
Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/method-wrapping-coc

Question No : 11
You have a cloud-based Dynamics 365 Finance production environment.
You need to access the data to create Microsoft Power BI reports for the business .
What should you use?

正解:
Explanation:
When you have completed modeling the aggregate measurement, you can deploy the aggregate measurement and continue with building KPIs and visualizations.
You have 2 deployment choices:
✑ Stage in Entity Store. This option leverages Entity store, the operational data store that enables near real-time PowerBI reporting.
✑ In-memory real-time
Reference: https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/analytics/model-aggregate-data

Question No : 12
HOTSPOT
You are a Dynamics 365 Finance developer.
You have the following entities.



You must create the required fields and relationships in the staging tables.
You need to develop a composite entity that uses the OrderHeader and OrderLine entities.
Which object should you use for each action? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.



正解:

Question No : 13
DRAG DROP
A company uses Dynamics 365 Unified Operations.
You need to integrate the system with third-party applications.
Which data integration strategies should you use? To answer, drag the appropriate data integration strategies to the correct scenarios. Each strategy 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. NOTE: Each correct selection is worth one point.



正解:


Explanation:
Box 1: custom service
Custom service peak data volume is 1,000 records per hour.
Box 2: batch data API
This scenario is best implemented by using batch data APIs, which has a peak data volume of 300,000 records per hour.
Box 3: OData endpoint
Peak data volume for reading Odata status of orders is 5,000 records per hour.
This scenario is best implemented by using the OData service endpoints to read order status information.

Question No : 14
HOTSPOT
A company plans to migrate purchase orders from an older system into Dynamics 365 Finance.
You need to generate field mapping between the source and the target data structures.
What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.



正解:


Explanation:
Graphical user interface, text, application, email
Description automatically generated

Question No : 15
HOTSPOT
You have a Dynamics 365 Finance and Operations development environment.
You must add default filters to the fleet management form. You must view only sales that occur in the current sales period and where the Customer name field contains the next Wholesales.
You need to configure filtering.
What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.



正解:

 / 3