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?
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?
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?
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?
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?
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?