adplus-dvertising
frame-decoration

Question

Which of the following statements are incorrect ?

a.

public members of class can be accessed by any code in the program

b.

private members of class can only be accessed by other members of the class

c.

private members of class can be inherited by a sub class, and become protected members in sub class

d.

protected members of a class can be inherited by a sub class, and become private members of the sub class

Answer: (c).private members of class can be inherited by a sub class, and become protected members in sub class

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following statements are incorrect ?

Similar Questions

Discover Related MCQs

Q. Which of these access specifiers must be used for class so that it can be inherited by another sub class?

Q. Which of these base class are accessible to the derived class members?

Q. What is the process by which we can control what parts of a program can access the members of a class?

Q. Which of these is used as default for a member of a class if no access specifier is used for it?

Q. Which among these access specifiers should be used for main() method?

Q. What is the return type of destructor ?

Q. Select wrong statement about destructor in C#?

Q. Operator used to free the memory when memory is allocated ?

Q. Name a method which has the same name as that of class and which is used to destroy objects also called automatically when application is finally on process of being getting terminated.

Q. The method called by clients of a class to explicitly release any resources like network,connection,open files etc.When the object is no longer required?

Q. Which operator among the following signifies the destructor operator?

Q. Which method has the same name as that of its class?

Q. What is the return type of constructors?

Q. Which of the following statements is correct about constructors in C#.NET?

Q. Can the method add() be overloaded in the following ways in C#?

public int add() { }
public float add(){ }

Q. Which among the following is the correct statement :
Constructors are used to

Q. Correct statement about constructors in C#.NET is ?

Q. Number of constructors a class can define is ?

Q. Which return statement correctly returns the output:

Q. How many values does a function return?