B
Q. What will be the output of the following C# code?
class Program { public static void Main(string[] args) { int i, j; i = (j = 5) + 10; Console. WriteLine(i); Console. WriteLine(j); Console. ReadLine(); } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Choose the correct type of variable scope for the following C# defined variables.
Q. All IO classes that represent streams are derived from the ______ class.
Q. What will be the output of the following C# code?
Q. Exception objects are derived from the class.
Q. All C# applications begin execution by calling the _____ method.
Q. Except == operator, which methods can be used to compare two strings?
Discusssion
Login to discuss.