Which among the following best describes a nested class?

Which among the following best describes a nested class? Correct Answer Class inside a class

If a class is defined inside another class, the inner class is termed as nested class. The inner class is local to the enclosing class. Scope matters a lot here.

Related Questions

If class A has two nested classes B and C. Class D has one nested class E, and have inherited class A. If E inherits B and C, then ________________
A static nested class is _____________ class in behavior that is nested in another _________ class.