Microsoft MB6-890 - Microsoft Dynamics AX Development Introduction Exam
Page: 2 / 19
Total 92 questions
Question #6 (Topic: Topic 1)
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?
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
Question #7 (Topic: Topic 1)
You have the following X++ statement
[Microsoft-MB6-890-8.0/Microsoft-MB6-890-7_2.png]
What is the output of the statement?
[Microsoft-MB6-890-8.0/Microsoft-MB6-890-7_2.png]
What is the output of the statement?
A. An error has occurred. VariableB cannot be less than variableA.
B. An error has occurred. Process was aborted.
C. An error has occurred. VariableB cannot be less than variableA.
D. VariableB cannot be less than variableA. Process was aborted.
Answer: B
Question #8 (Topic: Topic 1)
You want to have a form where you can display an image in a fast tab. Which type of sub-
pattern should you apply to the fast tab?
pattern should you apply to the fast tab?
A. Horizontal fields and Button group
B. Section tiles
C. Custom filters
D. Image preview
Answer: C
Question #9 (Topic: Topic 1)
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?
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
Question #10 (Topic: Topic 1)
You need to write an expression to calculate the compound interest that a bank needs
The formula for compound interest after one period is as follows:
I = (P * (1 + R)) - P
Where
I = Compound interest
P = Principal that was invested
R = Rate of interest
after one period.
Which X++ expression is equivalent to the formula above using operator precedence in X+-
+-?
The formula for compound interest after one period is as follows:
I = (P * (1 + R)) - P
Where
I = Compound interest
P = Principal that was invested
R = Rate of interest
after one period.
Which X++ expression is equivalent to the formula above using operator precedence in X+-
+-?
A. I = P* 1 + R- P
B. I = P*(1 + R-P)
C. I = P*(1 + R)-P
D. I = (P* 1) + (R-P)
Answer: C