Multiple choice general knowledge What modifiers may be used with an inner class that is a member of an outer class? public, protected private, static, final abstract all the above Reveal answer Fill a bubble to check yourself D Correct answer Explanation Inner classes are class members and can use all modifiers: access modifiers (public, protected, private) and non-access modifiers (static, final, abstract). Therefore all options A, B, and C are valid.