- Q Frank-Walter Steinmeier is the President of which country?
- Q KwaZulu-Natal 2015 National Teachers Awards presented annually by which country
- Q What are user-exits?
- Q "The Wanderer" is an old English poem that consists
- Q Wings of birds are?
- Q Where is SheeshMehal situated in Himachal Pradesh?
- Q What is dens
- Q What are the family and order of Stonefish ?
- Q What other jobs have you applied for recently?
- Q What is hop count?
- Q What will happen when you attempt to compile and run this code? class Base{ public final void amethod(){ System.out.println("amethod"); } } public class Fin extends Base{ public static void main(String argv[]){ Base b = new Base(); b.amethod(); } } 1) Compile time error indicating that a class with any final methods must be declared final itself 2) Compile time error indicating that you cannot inherit from a class with final methods 3) Run time error indicating that Base is not defined as final 4) Success in compilation and output of "amethod" at run time.