Consider the following ASP code:
<%
dim MyArray()
Redim MyArray(5)
MyArray(0) = “hello”
MyArray(1) = “greetings”
MyArray(2) = “welcome”
Application.Lock
Application(“StoredArray”) = MyArray
Application.Unlock
Response.Redirect(“file2.asp”)
%>
How many empty cells are in the array?
A.
Two empty cells
B.
One empty cell
C.
No empty cells
D.
Three empty cells