C# Classes and Objects Programming Interview Questions - 1
Question: 1
Define constructor?
A constructor is a special method declared in a class to initialize the fields at the time of the creation of an instance/object of a class.
It is a special method because the name of the method is same as that of class name.
Question: 2
Define destructor?
A destructor is a mechanism to release the resources when an object is reclaimed by the garbage collector.
The name of the destructor is the same as the class name and is preceded by a tilde (~).
Question: 3
What is called default constructor?
A public parameter less constructor called default constructor. It returns a default values for the value type.
Question: 4
Define static members and methods?
The members declared with the keyword static is called as static members. It is also called as class variables. These variables are used when we want to have a variable common to all instances of a class.
The methods declared with the keyword static is called as static methods. It is also called as Class methods. It can be called without using the object. They are also available for use by other classes.
Question: 5
What is called Field and Methods?
Fields : Variables declared in the class. to hold data.
Methods : Function members defined in the class. Used to implement the computations and actions to be performed.
Most Important Computer Questions for competitive Exams 2026-2027 More
Best Computer MCQ for Competitive Exams 2026-2027 More
VAPT MCQ Questions and Answers More
Computer File Extension MCQ Questions and Answers More
Scenario Based Power Apps Interview Questions More
Atmosphere and Winds Questions and Answers Pdf More
Trends in Economic Zoology Questions Pdf More
Data Structure Interview Questions and Answers for Experienced Pdf More
Area Problems with Solutions for SSC, IBPS Bank Exams More
Database Questions for Bank Exams with Answers Pdf More