What will be displayed when the following code is executed? String a = "Hello"; String b = "World"; String c = a + b; Response.Write("C");
Explanation
The code outputs the literal string "C" because Response.Write is called with the string "C" in quotes, not the variable c. Therefore, the output is simply the character C.