A base class wants to allow a derived class to access one of its data members. However, the base class does not want this member to be directly accessed outside the class. The base class should declare the member using the ____ access specifier.

A base class wants to allow a derived class to access one of its data members. However, the base class does not want this member to be directly accessed outside the class. The base class should declare the member using the ____ access specifier.


b.protected

template<classType>
function definition;
where Type is referred to as a formal parameter of the template. It
is used to specify the type of
parameters of the function and the return type of the function, and to declare variables within the
function. Look at the following code:
template<classType>
Type larger(Type x,Type y)
{
if(x>=y)
return x;
else
return y;
}