D365 F&O MCQ Questions - X++ Programming Language MCQ

Answer all questions carefully. After submission, you will see a detailed result and answer review.

Question 1
What kind of data can be found in the tables in Dynamics AX? (Select all that apply)
Question 2
It is a best practice to always specify a clustered index. TRUE or FALSE.
Question 3
Which of the following statements is NOT true about variable declarations?
Question 4
Statement: Method overriding is supported.
Question 5
Can we Modify existing fields in a table through extension?
Question 6
You need to enable an exchange of documents between finance and operations apps and an external application at the end of each day. Which of the following would you implement?
Question 7
I have a Enum named Criteria. Can I create an array of Criteria enums like below?

    //An array of Criteria enums 
    Criteria crit[100];
Question 8
Which scenario best describes when labels should be created and used?
Question 9
You are to complete the code needed to update records. You need to assign the updated value for the vehicle model before updating. Which will best complete this statement?

{
fmVehicle.dbModel _______ "Big Truck";
 fmVehicle.update();
 }

Question 10
You want to update a record in your SampleTable table that contains the account number 1234 by using the update method. Before you call the update method, which clause is used at the beginning of this statement to locate the record sampleTable.AccountNum == “1234”?