IndiaBIX
IndiaBIX
Start typing & press "Enter" or "ESC" to close
  • Home
  • Jobs
  • Results
  • Current Affairs
  • GK
  • Online Test
  • HR Interview
  • BLOG

Classes and Objects - General Questions (2)

  • Home
  • Computer Science & Engineering
  • C# Programming Questions and Answers
  • Classes and Objects - General Questions
9. 

Which of the following statements are correct?

1 Data members ofa class are by default public.

2 Data members of a class are by default private.

3 Member functions of a class are by default public.

4 A private function of a class can access a public function within the same class.

5 Member function of a class are by default private.

 

A. 1, 3, 5
B. 1, 4
C. 2, 4, 5
D. 1, 2, 3
E. None of these

Answer: Option C

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

10. 

The this reference gets created when a member function (non-shared) of a class is called.

 

A. True
B. False

Answer: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

11. 

Which of the following will be the correct output for the C#.NET program given below?

namespace IndiabixConsoleApplication
{
class Sample
{
int i;
Single j;
public void SetData(int i, Single j)
{
i = i;
j = j;
}
public void Display()
{
Console.WriteLine(i + " " + j);
}
}
class MyProgram
{
static void Main(string[ ] args)
{
Sample s1 = new Sample();
s1.SetData(10, 5.4f);
s1.Display();
}
}
}

A. 0 0
B. 10 5.4
C. 10 5.400000
D. 10 5
E. None of the above

Answer: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

12. 

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();

A. 1, 3
B. 2, 4
C. 1, 2, 3
D. 1, 4
E. None of these

Answer: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

13. 

Which of the following statements is correct?

A. Procedural Programming paradigm is different than structured programming paradigm.
B. Object Oriented Programming paradigm stresses on dividing the logic into smaller parts and writing procedures for each part.
C. Classes and objects are corner stones of structured programming paradigm.
D. Object Oriented Programming paradigm gives equal importance to data and the procedures that work on the data.
E. C#.NET is a structured programming language.

Answer: Option D

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

14. 

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.

 

A. 1, 3, 5
B. 2, 4
C. 3, 5
D. 2, 4, 5
E. None of these

Answer: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

15. 

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);
}
}

A. j cannot be declared as public.
B. DisplayData() cannot be declared as private.
C. DisplayData() cannot access j.
D. ShowData() cannot access to i.
E. There is no error in this class.

Answer: Option E

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

16. 

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();

A. Contents of s1 and s2 will be exactly same.
B. The two objects will get created on the stack.
C. Contents of the two objects created will be exactly same.
D. The two objects will always be created in adjacent memory locations.
E. We should use delete() to delete the two objects from memory.

Answer: Option C

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

  • 1
  • 2

Questions & Answers

Aptitude Chemical Engineering Civil Engineering Computer Science & Engineering Current Affairs Data Interpretation Electrical & Electronics Engineering Electronics & Communication Engineering General Knowledge Logical Reasoning Mechanical Engineering Non Verbal Reasoning Verbal Ability Verbal Reasoning

Interviews

HR Interview

Jobs

Sarkari Jobs

Results

Rojgar ResultSarkari Result

Admission

Admission 2023

Admit Card

Admit Card 2023

Answer Key

Answer Key 2023
copyright
Privacy Policy
© 2025 IndiaBIX. All Rights Reserved.

Report