Q1. 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.
A. policies
B. roles
C. duties
D. permissions
Answer: B,C
Q2. You have two classes written in X++ with the following code:
Which three methods of the DirParty class are accessible from the Write method? (Each correct answer presents a complete solution.)
A. duplicateCurrentParty()
B. addLocation()
C. update()
D. getContactlnfo()
E. add LocationCI ientO
Answer: A,B,D
Q3. You need to create menus in Microsoft Dynamics AX
In addition to the Menu hem type and Menu hem name, what are three other key property values? Each correct answer presents a complete solution.
A. Enum Type Parameter
B. Linked Permission Type
C. Configuration Key
D. Labels
E. Normal Image
Answer: A,B,C
Q4. You need to delete multiple records from the CustTrans table that are not approved. Code execution efficiency is a factor since the table will contain millions of records. Additionally, the CustTrans table does not have any overridden methods.
Which X++ code segment should you use to achieve this goal?
A. delete from CustTrans where CustTrans.Approved ==NoYes :: No;
B. select firstonly CustTrans where CustTrans.Approved==NoYes::No; CustTrans.delete();
C. while select CustTrans where CustTrans.Approved==NoYes::No
{
CustTrans.delete() ;
}
D. select CustTrans where CustTrans-Approved == NoYes::No; CustTrans.dodelete();
Answer: A
Q5. You are working in a Visual Studio development environment and want to call a class to update some records. Which type of menu item should you use?
A. Output
B. Action
C. Auto
D. Display
Answer: B
Q6. You are required to configure a Microsoft Dynamics AX production environment for your customer.
You need to configure the Dynamics AX server as part of the overall installation and configuration.
Which two components can be used to deploy the server? Each correct answer presents a complete solution.
A. Database
B. Azure Infrastructure as a Service (IaaS) Virtual Machines
C. Windows PowerShell Commands
D. Internet Information Services (DA) web application
Answer: A,B
Q7. Your solution stores customers in a table named Gust Table. CustTable contains a field named AccountNum, which is used to store the unique account number for a customer. Data in the AccountNum field is 4 characters in length.
You need to retrieve only the records in CustTable where the second character of the Account Number is the letter "H".
How should you write the select statement?
A. select * from CustTable where CustTable.AccountNum like "*H"
B. select * from CustTable where CustTable.AccountNum like "*H?"
C. select * from CustTable where CustTable.AccountNum like "H*"
D. select * from CustTable where CustTable.AccountNum like "?H*"
Answer: D
Q8. You have the following X++ statement
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
Q9. You are working with a new programmer and need to explain which types of objects can be aa< Which three objects should you discuss? Each correct answer presents a complete solution.
A. References Rationale
B. Models Rationale
C. Project Rationale
D. Application Object Tree (AOT)
E. Elements Rationale
Answer: A,D,E
Q10. 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+-
+-?
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