1.
You have added a command button to a form that calls a codeunit when it is pressed (using RunObject). The OnRun trigger of the codeunit modifies the customer record as follows:
IF Customer.GET(CustNo) THEN BEGIN
Customer.'Chain Name' := NewChainName;
Customer.MODIFY;
END; // Other code here
When does the customer change get committed to the database?
2.
Which of the following is NOT true regarding the BLOB complex data type?
3.
Which of the following is TRUE regarding Text Constants?
4.
You are writing code in C/SIDE. Assuming that you are not in a transaction, which of the following starts a transaction?
5.
You need to open a form to get user input. After this form runs you will use the information to generate records in several setup tables. What is the correct way to run the form from code?
6.
Which of the following files is not contained in the three-letter language code sub-folder, found in the Microsoft Dynamics NAV client folder for each language in a multi-language installation?
7.
What is meant by optimistic concurrency?
8.
Which of the following statements is not true regarding a variable of the datatype BigText?
9.
Assuming that the variable WordApp has been defined with a DataType of Automation, what is the purpose of the following code?
IF ISCLEAR(WordApp) THEN
CREATE(WordApp);
10.
In regard to the following block of code, which statement is true about performance when the code is executed?
WITH Customer DO BEGIN
// section A
IF FIND('-') THEN
REPEAT
"Credit Limit (LCY)" := 1000;
MODIFY;
UNTIL NEXT = 0;
// section B
IF FIND('-') THEN
REPEAT
"Credit Limit (LCY)" := 1000;
Ok := MODIFY;
UNTIL NEXT = 0;
END;