Correct Answer: new
Explanation:
Note: This Question is unanswered, help us to find answer for this one
C# Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More C# MCQ Questions
int a = 1, b = 1; b = ++a; What is the b?
In C#, the keyword used to create an object to a class or struct is?
Can you allow a class to be inherited, but prevent the method from being overridden?
Which one of the given examples is correct if I want the class Car inherit the class Vehicle?
Which symbol is used to prefix a preprocessor directive?
What is an Action delegate?
_____________ helped overcome the DLL conflict faced by the C# language versions prior to .NET.
Asynchronous execution is supported in ADO.NET 2.0 for?
Complete the following sentence: When unboxing occurs...
What happens when the below code is executed? abstract class Shape { public abstract void draw(); }class Rectangle: Shape{ public override void draw(); //Some more member functions.....}class CCheck{ public static void Main() { Shape objShape; } }