Which shortcut key moves focus to the previous field of the current record?
A. [Home]
B. [Shift][Tab]
C. [Up Arrow]
D. [F5]
Answer: B
You might also like to view...
Discuss baseband versus broadband.
What will be an ideal response?
A _________ is a set of values and a set of operations on those values.
a. file b. data type c. precedence rule d. library e. language standard
Which of the following statements is false?
a. The javac command can compile multiple classes at once; simply list the source-code filenames after the command with each filename separated by a comma from the next. b. If the directory containing the app includes only one app’s files, you can compile all of its classes with the command javac *.java. c. The asterisk (*) in javac *.java indicates that all files in the current directory ending with the filename extension “.java” should be compiled. d. All of the above are true.
What does the following section of code accomplish?
```Dim intCount as Integer Dim intXXXX as Integer = intNumbers(0) For intCount = 1 to (inNumbers.Length - 1) If intNumbers(intCount) > intXXXX Then intXXXX = intNumbers(intCount) End If Next intCount ``` a. Finds the first element of the array intNumbers b. Finds the last element of the array intNumbers c. Finds the Highest value in the array intNumbers d. Finds the Lowest value in the array intNumbers