Multiple choice

Are private class level variables inherited?

  1. Yes

  2. No

  3. Can't tell

  4. May be

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Private members ARE inherited in the class structure but are NOT accessible in derived classes. Inheritance includes all members, but access modifiers control visibility. The 'Yes' answer refers to structural inheritance, not accessibility.