Online Access Free MB6-890 Exam Questions

Exam Code:MB6-890
Exam Name:Microsoft Dynamics AX Development Introduction
Certification Provider:Microsoft
Free Question Number:95
Posted:Oct 27, 2025
Rating
100%

Question 1

You create a privilege to maintain vendor information.
To which two elements can you add the privilege? Each correct answer presents part of the solution.

Question 2

You are explaining the structure of a model to your client
Which two pieces of information should you provide to your client? Each correct answer presents a complete solution.

Question 3

You need to determine the output of the following code;
int i;
int j = 0;
for(i =0; i <= 10; i=i+2)
{
if (i mod 2 == 0)
{
j = j + 1;
}
if (i > 4)
{
break;
}
}
info (strFmt("%1" , j));
What is the output in the Infolog after running the code?

Question 4

Your company is planning to track vehicle information in Dynamics AX. Two tables will be required to store the information. Each vehicle will be uniquely identified by an ID having alpha numeric value.
You need to create two custom tables that store information related to the vehicles. Each table needs to have a field that identifies the vehicle in the system.
How should you add these fields?

Question 5

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)

C)

D)

Add Comments

Your email address will not be published. Required fields are marked *

insert code
Type the characters from the picture.