TRUE
nan
nan
nan
Answer is Right!
Answer is Wrong!
The correct answer is FALSE.
In VB, we can use the Dim statement to declare an array. The Public statement is used to declare a variable that can be accessed from all modules in the project.
Here is an example of how to declare an array using the Dim statement:
Dim myArray(5) As Integer
This statement declares an array named myArray
with 5 elements, each of which is of type Integer
.
Here is an example of how to declare a variable using the Public statement:
Public myVar As Integer
This statement declares a variable named myVar
of type Integer
. This variable can be accessed from all modules in the project.