Interview Questions

What would the inside code load ?

ASP Interview Questions and Answers


(Continued from previous question...)

70. What would the inside code load ?

< %@ Language=VBScript % >
< %If false then >
< !-- #INCLUDE FILE="FunctionOne.inc"-->
< %Else >
< !-- #INCLUDE FILE="FunctionTwo.inc"-->
< %End If >
What would the above code load?


A. Only the FunctionTwo.inc file into the ASP page.
B. Both files, since Server Side Includes are processed before ASP interpreting.
C. Only the FunctionOne.inc file into the ASP page.
D. Neither file, since Server Side Includes are processed before ASP interpreting.
E. Neither file, since the #INCLUDE statements are commented out.

(Continued on next question...)

Other Interview Questions