C# Programming - Classes and Objects

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

Learn and practise solving C# Programming questions and answers section on "Classes and Objects" 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 "Classes and Objects"?

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

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

Here you can find multiple-choice C# Programming questions and answers based on "Classes and Objects" 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 "Classes and Objects" in PDF format?

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

How do I solve C# Programming quiz problems based on "Classes and Objects"?

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

Exercise : Classes and Objects - General Questions
  • Classes and Objects - General Questions
1.
Which of the following statements is correct about the C#.NET code snippet given below?
class Student s1, s2; // Here 'Student' is a user-defined class.
s1 = new Student(); 
s2 = new Student();
Contents of s1 and s2 will be exactly same.
The two objects will get created on the stack.
Contents of the two objects created will be exactly same.
The two objects will always be created in adjacent memory locations.
We should use delete() to delete the two objects from memory.
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?
class Sample
{
    private int i;
    public Single j;
    private void DisplayData()
    {
        Console.WriteLine(i + " " + j);
    }
    public void ShowData()
    {
        Console.WriteLine(i + " " + j);
    }
}
j cannot be declared as public.
DisplayData() cannot be declared as private.
DisplayData() cannot access j.
ShowData() cannot access to i.
There is no error in this class.
Answer: Option
Explanation:
No answer description is available. Let's discuss.

3.
Which of the following statements are correct?
  1. Instance members of a class can be accessed only through an object of that class.
  2. A class can contain only instance data and instance member function.
  3. All objects created from a class will occupy equal number of bytes in memory.
  4. A class can contain Friend functions.
  5. A class is a blueprint or a template according to which objects are created.
1, 3, 5
2, 4
3, 5
2, 4, 5
None of these
Answer: Option
Explanation:
No answer description is available. Let's discuss.

4.
Which of the following statements is correct?
Procedural Programming paradigm is different than structured programming paradigm.
Object Oriented Programming paradigm stresses on dividing the logic into smaller parts and writing procedures for each part.
Classes and objects are corner stones of structured programming paradigm.
Object Oriented Programming paradigm gives equal importance to data and the procedures that work on the data.
C#.NET is a structured programming language.
Answer: Option
Explanation:
No answer description is available. Let's discuss.

5.
Which of the following is the correct way to create an object of the class Sample?
  1. Sample s = new Sample();
  2. Sample s;
  3. Sample s; s = new Sample();
  4. s = new Sample();
1, 3
2, 4
1, 2, 3
1, 4
None of these
Answer: Option
Explanation:
No answer description is available. Let's discuss.