Given the following class class Base { int Age=33; } How you can improve above class with respect to accessing the field Age?

(A) Define the variable Age as private
(B) Define the variable Age as protected
(C) Define the variable Age as private and create a get method that returns it and a set method that updates it
(D) Define the variable Age as protected and create a set method that returns it and a get method that updates it

error: Content is protected !!