Predict the output of the following program.
abstract class demo
{
public int a;
demo()
{
a = 10 ;
}
abstract public void set();
abstract final public void get();
}
class Test extends demo
{
public void set( int a)
{
this .a = a;
}
final public void get()
{
System.out.println( "a = " + a);
}
public static void main(String[] args)
{
Test obj = new Test();
obj.set( 20 );
obj.get();
}
}
|
(A) a = 10
(B) a = 20
(C) Compilation error
Answer: (C)
Explanation: Final method can’t be overridden. Thus, an abstract function can’t be final.
Quiz of this Question
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Jun, 2021
Like Article
Save Article