MB6-890 Exam - Microsoft Dynamics AX Development Introduction

certleader.com

Q1. You need to verify the properties related to a specific table in the AOT, and you do not have a project The properties pane is already open in Visual Studio.

Which component do you need to use to select the table in order to see the properties?

A. Application Explorer

B. Object Browser

C. Solution Explorer

D. Code Definition Window

Answer: D

Q2. You have a table named CustTable. which has the following three fields: AccountNum, Currency, and CustGroup. You need to wnte X++ code to insert a record into CustTable and set the values of the three fields as follows:

AccountNum = "5000- Currency = "USD" CustGroup="30"

Which two code segments can you use to achieve this goal? Each correct answer presents a complete solution.

A)

B)

D)

A. Option A

B. Option B

C. Option D

D. Option D

Answer: C,D

Q3.  You have tables named Table1 and Table2 The tables have a relation to each other. You need to display data from both of the tables in a form. How should you create the data source for the form?

A. Add both of the tables into a perspective, and use the perspective as the data source.

B. Create a new table named Table3 that has a relation to Tablel and to Table2, and use Table3 as the data source.

C. Add both of the tables into a query, and use the query as the data source.

D. Add both of the tables into a map. and use the map as the data source.

Answer: C

Q4. You plan to create two tables Table1 and Table2. Both tables will have a field of type string that has a length of 15 and is named Customer Number. The tables will have a relation on the Customer Number field.

You need to ensure that the string length of Customer Number is identical in both tables. The solution must ensure that if any relations on the Customer Number field are added to other tables, the additional tables will have the same string length for Customer Number.

What should you use?

A. an index

B. a class

C. an extended data type

D. a base enumeration

Answer: A

Q5.  You have an X++ class that has the following code:

You are writing a static method. You have an object of AssetBookCompareContract named

assetBookCompareContractObj that is initialized within this method.

You need to print the current value of the firstAssetBookld variable from the assetBookCompareContractObj object.

Which piece of code should you use to achieve this goal?

A. irvFo(assetBookCompareContractObj : :fIrstAssetBookld);

B. info(assetBookCompareContractObj.f IrstAssetBookld);

C. info(assetBookCompareContractObj.panmFirstAssetBookId(“”));

D. info(assetBookCompareContractObj.parmFirstAssel:BookId());

Answer: D

Q6. You need to demonstrate the benefits of using Extended Data Types (EDTs) to your project team. Which three points should you highlight? Each correct answer presents a complete solution.

A. They automatically update data.

B. They reduce rework.

C. They create dynamic filters.

D. They improve the readability of code.

E. Their properties can be inherited.

Answer: D,E

Q7. You are using Visual Studio to manage development with Microsoft Dynamics AX. You need to complete a project for use within the application. Which step must be performed?

A. best practice check

B. synchronization

C. build

D. validation

Answer: A

Q8. Which information does the Microsoft Dynamics AX development model contain?

A. the OLTP database

B. an element's metadata and source code

C. an element's metadata only

D. an elements source code only

Answer: D

Q9. You need to determine the output of the following code:Which X++ code segment should you use to achieve this goal?

What is the output in the Infolog after runn.ng the code.

A. 10 A

B. 20 C

C. 30 B

D. 40 C

Answer: D