Home / Programming MCQs / C# MCQs / Question
R
Q. What will be the output of the following C# code?
using System; class Program { static void Main(string[] args) { int i = 2; int j = 10 / 4; if (i == j) { Console.WriteLine("True"); } else { Console.WriteLine("False"); } } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Which is the correct way to declare an object of the class in C#?
Duck typing is implemented by using_________ keyword.
Defining two methods with the same name but with different parameters is called.
An ____ is a group of contiguous or related data items that share a common name
Which is the first line of a C# program?
Which of the following statements is correct about Interfaces used in C#.NET?
The purpose of JIT compiler is to convert____________.
The compiled version of a VC#.NET program will be in_______________.
ADO.NET is the data access component of Microsoft’s .NET framework that enables you to
Discusssion
Login to discuss.