Question 206

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.
A company is implementing Dynamics 365 finance and operations apps.
The company must test the functionality of its native Dynamics 365 finance and operations apps by using the Acceptance test library (ATL).
You need to implement ATL classes on test data within a development environment.
Solution: Create command classes to run business practices. Call the classes by using the SysTest framework.
Does the solution meet the goal?
  • Question 207

    You are a Dynamics 365 Finance developer. You have two tables as shown in the following exhibit:

    You need to configure Table1 to ensure that records cannot be deleted from Table1 if Table2 contains related records.
    Which value should you use for the OnDelete property?
  • Question 208

    You have the following class definition:

    You need to create an extension class and create a new static method in it that converts miles to kilometers and then call the method from another class.
    How should you complete the code and call the method? To answer, select the appropriate options in the answer area.
    NOTE: Each correct selection is worth one point.

    Question 209

    A company uses Dynamics 365 Finance.
    You create two methods in a class:
    * MethodA is called only from the class. MethodA is not called from other locations in the code. Within MethodA, you must access class variables.
    * MethodB is called from other places in the app. MethodB does not need to instantiate the class or access the class variables.
    You need to implement the methods.
    Which method types should you use? To answer, drag the appropriate method types to the correct methods.
    Each method 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.

    Question 210

    You have a custom enumeration named CarType. The enumeration has the following elements: Sedan, SUV.
    You must extend CarType and add a new element named MUV to CarType.
    You need to develop a solution that meets the requirements.
    Solution: Set the is Extensible property to false for the CarType enumeration. Create a new enumeration to add the MUV element.
    Does the solution meet the goal?