Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

11. static class A {
12. void process() throws Exception { throw new Exception();
}
13. }
14. static class B extends A {
15. void process() { System.out.println(”B”); }
16. }
17. public static void main(String[] args) {
18. new B().process();
19. }
What is the result?
1 B
2 The code runs with no output.
3 Compilation fails because of an error in
line 12.
4 Compilation fails because of an error in
line 15.

Answer Posted / r.jainrocks@gmail.com

Compilation fails

static keyword not allowed here
at line 11 and 14

Is This Answer Correct ?    9 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between reader/writer and inputstream/output stream?

1138


What are different types of inner classes ?

1103


What is thread pool in java with example?

1067


How many tetrahedral voids are there in bcc?

1175


Is main is a keyword?

1061


You're given a Boolean 2D matrix, can you find the number of islands?

1151


What are thread local variables?

1238


What is the functionality of the stub?

1090


How many types of constructors are used in java?

1275


How we can make copy of a java object?

1153


How do you compare characters in java?

1050


Can we have any other return type than void for main method?

1000


What is stringbuffer in java?

1114


what is thread? What are the high-level thread states? : Java thread

1329


What is parsing a sentence?

1174