All VBA variables and constants are assigned ________ that describes the data that the variable or constant can hold
A) to memory B) a programmer-defined name
C) a data type D) a conditional compiler
C
Computer Science & Information Technology
You might also like to view...
Access does not require that every table has a primary key
Indicate whether the statement is true or false
Computer Science & Information Technology
Given the following pseudocode variable declaration, which of the statements shown would display the last character in the string?
``` Declare String lunch = "Spaghetti is stringy!" ``` a. Display lunch[0] b. Display lunch[18] c. Display lunch[length(lunch)] d. Display lunch[length(lunch) - 1]
Computer Science & Information Technology