Consider the following code segment:
MODIFIER class SomeClass { }
Which three of the following modifiers, when replaced instead of MODIFIER, will compile cleanly?
a) d) e)
Only public, abstract, and final modifiers are permitted for an outer class; using private, protected, or static will result in a compiler error.