C# Exclusive Interview Questions and Answers (453) - Page 14

  • A joint initiative from DotNetFunda.Com and Questpond.
  • A one stop place on the internet to get trusted and proven Interview Questions (based on more than a decade of experience in this field) to ensure the success of the candidates.
  • You will find almost all Interview questions from Questpond here and this list is growing day by day with all latest and updated interview questions.

453 records found.

Get 650+ Questpond's Interview videos on discount

For a given try, the catch block of __________ class must be always after the catch block of ___________ class

NOTE: This is objective type question, Please click question title for correct answer.
public static void Main() { CA a; } What is "a" ?

a is a reference variable of type CA.
KeyPress event fires only for _____________

NOTE: This is objective type question, Please click question title for correct answer.
What is Shadowing?

When the method is defined as sealed in base class and not overrideable and
we need to provide different implementation for the same. This process
is known as shadowing.
MaskedTextBox properties are _________

NOTE: This is objective type question, Please click question title for correct answer.
___________ DialogBox : unless it is disposed we cannot work with the parent form

NOTE: This is objective type question, Please click question title for correct answer.
_______ DialogBox : It always remains on top of the owner form but while is is open we can also work with owner form

NOTE: This is objective type question, Please click question title for correct answer.
The MenuItems in the MenuStrip of __________ are by default appended to the MenuStrip of ___________

NOTE: This is objective type question, Please click question title for correct answer.
What is the Order Of Execution of Destructors in Child and Parent Classes

Parent Class Destructor is Executed After Child Class Destructor.
What is the advantage of inheritance

The advantages of Inheritance are Generalization,Extensibility and Reusability.
A reference variable of type parent can refer to an object of child class True / False

True.A reference variable of type parent can refer to an object of child
class because all the members which the reference variable can access
exist in memory when the object is of child class.
A reference variable of child can refer to an object of parent class True / False? Justify

False because the child class members that the reference variable can access do not exit in memory when the object is of parent class.
class CA { } class CB : CA { } class Program { static void Main() { CA a = new CB(); //Is it valid or not? } }

A reference variable of type parent can refer to an object of child
class because all the members which the reference variable can access
exist in memory when the object is of child class.
Virtual Methods are

NOTE: This is objective type question, Please click question title for correct answer.

More C# Interview Questions & Answers here

Found this useful, bookmark this page to the blog or social networking websites. Page copy protected against web site content infringement by Copyscape

 Exclusive Interview Questions and Answers Categories