Which statement is true?.
Select the one correct answer.
(e)
Non-static member classes, unlike top-level classes, can have any accessibility modifier.
Static member classes can only be declared in top-level or nested static member classes and interfaces.
Only static member classes can be declared static.
Declaring a class static only means that instances of the class are created without having an outer instance.
This has no bearing on whether the members of the class can be static or not.