If classA includes a private variable $n$, a protected variable $m$, and a public variable $k$, and classB is derived from classA, which of these variables can be used in classB? Can $n$ become in class B private? protected? public? How about variables $m$ and $k$ ? Does it make a difference whether the derivation of classB was private, protected, or public?