You are employed as a developer at ABC.com. You make use of C# and ASP.NET for
development purposes.
You are in the process of developing a new derivative of the Shape class. The Shape class makes
use of public virtual void to define the Area method.
You want to make sure that the Area method in the Shape class allows for new operations, while
keeping the execution of the Area method of the Shape class concealed.
What option should you use?
A.
You should consider defining the Area method for the derivative of the Shape class using public
new void.
B.
You should consider defining the Area method for the derivative of the Shape class using
private new void.
C.
You should consider defining the Area method for the derivative of the Shape class using public
sealed void.
D.
You should consider defining the Area method for the derivative of the Shape class using
private sealed void.
A.