1.
How does the RoleTailored client behave if you reference a character that is beyond the length of a string?
2.
You are a Microsoft Dynamics NAV developer. You create a one-dimensional array of 10 elements with identifier SalesPrice of data type Decimal. What syntax do you use to set the fourth and seventh elements of this array to zero?
3.
You are a Microsoft Dynamics NAV developer. You need to fill in the Name, Description, and Comment fields in the Tool table with the first, second, and third values of the Txt array variable, respectively. Which syntax do you use?
4.
You create the following function:ChangeValues(VAR First : Integer;Second : Integer)First := 10;Second := 10;You then call it using the following code:A := 1;B := 1;ChangeValue(A, B);What values do the variables A and B have after the code is executed?
5.
Which of the following built-in C/AL functions does not return a value?
6.
You need to retrieve record number 1002 from the Item table (that is, item with No. = 1002) using the GET function. Which of the following pieces of code do you use?
7.
Which of the following expressions allow you to use the GETRANGEMAX function over the No. field of the Customer table without returning a run-time error?
8.
Which of the following functions do not consider the current filter settings for a field?
9.
Which of the following system parameters can you retrieve in Microsoft Dynamics NAV 2009 using built-in C/AL functions?
10.
You write a piece of code that calculates the date based on the following expression:CALCDATE(, TODAY)What value does this function return if the current system date is January 3, 2009?