<AptiCode/>

The ultimate platform for developers to practice, compete, and grow. Join our community of passionate coders today.

TwitterLinkedIn

Platform

ProblemsCompilerAptitude TestsContests

Company

About UsContactRewardsContribute

Legal

Terms of ServicePrivacy PolicyShipping PolicyRefund Policy

© 2025 AptiCode. All rights reserved.

Made withfor developers

topic/Inner Classes

Question NoTitleTypeMarks
751.Which is true about an anonymous inner class?
MCQ
5
752.class Boo { Boo(String s) { } Boo() { } } class Bar extends Boo { Bar() { } Bar(String s) {super(s);} void zoo() { // insert code here } }which one create an anonymous inner class from within class Bar?
MCQ
5
753.Which is true about a method-local inner class?
MCQ
5
754.Which statement is true about a static nested class?
MCQ
5
755.Which constructs an anonymous inner class instance?
MCQ
5