Back

Welcome to your .NET Practice Test - 7

Which of the following statements is correct?

What will be the output of the following code snippet?

static void Main(string[] args) { int x = 8; int b = 16; int c = 64; x /= c /= b; Console.WriteLine(x + " " + b+ " " +c); Console.ReadLine(); }

Which of the following operator determines whether an object is of a certain type in C#?

Which of the following keyword is used to change the data and behavior of a base class by replacing a member of a base class with a new derived member?

Which of the following converts a type to a single Unicode character, where possible in C#?

Which of the following is the correct way to overload + operator?

Which of the following is the correct about static member variables of a class?

Which of the following statements is correct about constructors in C#.NET?

Which of the following statements is correct?

Struct’s data members are ___ by default.

Enroll For Course !