Interview Questions

What would be the result of the inside code?

ASP Interview Questions and Answers


(Continued from previous question...)

58 What would be the result of the inside code?

<%
intA = 3
sStrA = "Hello World"
sStrB = "Hello World" + intA
Response.Write sStrB
%>
What would be the result of the above code?


A. Type mismatch error
B. "Hello World, Hello World, Hello World"
C. 0
D. "Hello World 3"
E. "Hello World"

(Continued on next question...)

Other Interview Questions