Which of the following is NOT true about form views?
A) Data is not shown while you are in Design view.
B) Layout view allows you to make changes to the form while viewing the data at the same time.
C) To make any changes to the form you need to switch to either Layout view or Datasheet view.
D) Form view is only for viewing and changing data.
C
You might also like to view...
The function prototype double mySqrt(int x);
a) defines a function called mySqrt which takes an integer as an ar-gument and returns a double b) defines a function called double which calculates square roots c) defines a function called mySqrt which takes an argument of type x and returns a double (d) defines a function called mySqrt which takes a double as an ar-gument and returns an integer
How many elements are in an array created with the following loop?
``` var myArray = new Array; for (k = 0; k , 8; k++) myArray[k] = k; ``` a. 9 b. 8 c. 7 d. 6