Which of the following keyboard shortcut keys selects the first field in the first record in a datasheet?

A. ALT + HOME
B. CTRL + END
C. SHIFT + END
D. CTRL + HOME


Answer: D

Computer Science & Information Technology

You might also like to view...

What is wrong in the following code?

``` vector v; v[0] = 2.5; ``` a. The program has a runtime error because you cannot assign a double value to v[0]. b. The program has a runtime error because there are no elements in the vector. c. The program has a compile error because there are no elements in the vector. d. The program has a compile error because you cannot assign a double value to v[0].

Computer Science & Information Technology

State whether each of the following is true or false. If false, explain why.

a) To refer to a particular location or element within an array, we specify the name of the array and the value of the par- ticular element. b) An array declaration reserves space for the array. c) To indicate that 100 locations should be reserved for integer array p, the programmer writes the declaration p[ 100 ]; d) A JavaScript program that initializes the elements of a 15-element array to zero must contain at least one for statement. e) A JavaScript program that totals the elements of a double-subscripted array must contain nested for statements.

Computer Science & Information Technology

Many database programs perform which of the following in order to analyze entered data to help ensure that it is correct?

A. information confirmation B. integration C. validity check D. integrity valuation

Computer Science & Information Technology

In ____________________ design, the final program is a collection of interacting objects.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology