Classes And Objects In C Sharp - Study Mode

[#91] Which of these can be used to fully abstract a class from its implementation?
Correct Answer

(C) Interfaces

[#92] Select the class visibility modifiers among the following:
Correct Answer

(B) Private, protected, public, internal, protected internal

[#93] Which of the following is the correct way of implementing an interface addition by class maths?
Correct Answer

(A) class maths : addition {}

[#94] Which of the given modifiers can be used to prevent Method overriding?
Correct Answer

(C) Sealed

[#95] Which of the following keyword is used to change data and behavior of a base class by replacing a member of the base class with a new derived member?
Correct Answer

(C) new