C# Programming - Constructors

Why should I learn to solve C# Programming questions and answers section on "Constructors"?

Learn and practise solving C# Programming questions and answers section on "Constructors" to enhance your skills so that you can clear interviews, competitive examinations, and various entrance tests (CAT, GATE, GRE, MAT, bank exams, railway exams, etc.) with full confidence.

Where can I get the C# Programming questions and answers section on "Constructors"?

IndiaBIX provides you with numerous C# Programming questions and answers based on "Constructors" along with fully solved examples and detailed explanations that will be easy to understand.

Where can I get the C# Programming section on "Constructors" MCQ-type interview questions and answers (objective type, multiple choice)?

Here you can find multiple-choice C# Programming questions and answers based on "Constructors" for your placement interviews and competitive exams. Objective-type and true-or-false-type questions are given too.

How do I download the C# Programming questions and answers section on "Constructors" in PDF format?

You can download the C# Programming quiz questions and answers section on "Constructors" as PDF files or eBooks.

How do I solve C# Programming quiz problems based on "Constructors"?

You can easily solve C# Programming quiz problems based on "Constructors" by practising the given exercises, including shortcuts and tricks.

Exercise : Constructors - General Questions
  • Constructors - General Questions
1.
Which of the following statements is correct?
A constructor can be used to set default values and limit instantiation.
C# provides a copy constructor.
Destructors are used with classes as well as structures.
A class can have more than one destructor.
Answer: Option
Explanation:
No answer description is available. Let's discuss.

2.
Which of the following statements is correct about the C#.NET code snippet given below?
namespace IndiabixConsoleApplication
{ 
    class Sample
    { 
        public int func()
        {
            return 1;
        } 
        public Single func()
        { 
            return 2.4f ;
        } 
    } 
    class Program
    { 
        static void Main(string[ ] args)
        {
            Sample s1 = new Sample(); 
            int i;
            i = s1.func(); 
            Single j; 
            j = s1.func(); 
        } 
    } 
}
func() is a valid overloaded function.
Overloading works only in case of subroutines and not in case of functions.
func() cannot be considered overloaded because: return value cannot be used to distinguish between two overloaded functions.
The call to i = s1.func() will assign 1 to i.
The call j = s1.func() will assign 2.4 to j.
Answer: Option
Explanation:
No answer description is available. Let's discuss.

3.
Which of the following ways to create an object of the Sample class given below will work correctly?
class Sample
{
    int i;
    Single j;
    double k;
    public Sample (int ii, Single jj, double kk)
    {
        i = ii;
        j = jj;
        k = kk;
    } 
}
Sample s1 = new Sample();
Sample s1 = new Sample(10);
Sample s2 = new Sample(10, 1.2f);
Sample s3 = new Sample(10, 1.2f, 2.4);
Sample s1 = new Sample(, , 2.5);
Answer: Option
Explanation:
No answer description is available. Let's discuss.

4.
Which of the following statements are correct about static functions?
  1. Static functions can access only static data.
  2. Static functions cannot call instance functions.
  3. It is necessary to initialize static data.
  4. Instance functions can call static functions and access static data.
  5. this reference is passed to static functions.
1, 2, 4
2, 3, 5
3, 4
4, 5
None of these
Answer: Option
Explanation:
No answer description is available. Let's discuss.

5.
Which of the following statements is correct about constructors?
If we provide a one-argument constructor then the compiler still provides a zero-argument constructor.
Static constructors can use optional arguments.
Overloaded constructors cannot use optional arguments.
If we do not provide a constructor, then the compiler provides a zero-argument constructor.
Answer: Option
Explanation:
No answer description is available. Let's discuss.