CIW Exam Questions

what reason?

Andreas wrote the following ASP code, but it did not execute correctly:
<%
Dim 1_objConn, objRS
Set objConn = Server.CreateObject(“ADODB.Connection”)
1_objConn.ConnectionString = …
1_objConn.Open
Set objRS = 1_objConn.Execute(“…”)
objRS.Close
Set objRS = Nothing
1_objConn.Close
Set 1_objConn = Nothing
%>
The Web server would not to run this part of the script for what reason?

A.
The variable name starts with a numeric character.

B.
The variable name contains numbers.

C.
The variable name is not defined with the Private keyword.

D.
The variable name contains underscores.