adplus-dvertising
frame-decoration

Question


Which one create an anonymous inner class from within class Bar?
class Boo 
{
    Boo(String s) { }
    Boo() { }
}
class Bar extends Boo 
{
    Bar() { }
    Bar(String s) {super(s);}
    void zoo() 
    {
    // insert code here
    }
}

a.

Boo f = new Boo(24) { };

b.

Boo f = new Bar() { };

c.

Bar f = new Boo(String s) { };

d.

Boo f = new Boo.Bar(String s) { };

Posted under Java Programming

Answer: (b).Boo f = new Bar() { };

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which one create an anonymous inner class from within class Bar?

Similar Questions

Discover Related MCQs

Q. Which is true about a method-local inner class?

Q. Which statement is true about a static nested class?

Q. Which constructs an anonymous inner class instance?

Q. What allows the programmer to destroy an object x?

Q. Which statement is true?

Q. Which statement is true?

Q. Which statement is true?

Q. Which statement is true?

Q. A class which is declared with the ________ keyword is known as an abstract class in Java.

Q. Abstract class can have constructors and static methods?

Q. What is the syntax of abstract class in java?

Q. A method which is declared as abstract and does not have implementation is known as an _____________?

Q. An abstract class can have a data member, abstract method, method body (non-abstract method), constructor, and even main() method.

Q. Java is a ___ programming language.

Q. In Java programming language, the code is placed inside ___.

Q. Properties are implemented using ___ in Java.

Q. A Class in Java is like a ____.

Q. Which is the file extension used for a public Java class source code?

Q. Which is the file extension used for a compiled Java class file?

Q. State TRUEor FALSE.
The source-code of An Abstract-Class or Interface is kept inside a .java file.