What will be displayed when the following code is executed? String a = "Hello"; String b = "World"; String c = a + b; Response.Write("C");

Choose the correct answer

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.

What will be displayed when the following code is ex… — ASP.net | PakQuizHub