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 / neil

B

Is This Answer Correct ?    15 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Difference between serialization and deserialization in java?

1077


Define array. Tell me about 2-D array.

997


What is queue in java?

1066


What is string in java with example?

939


What do you understand by access specifiers in Java?

961


Can you call a method in a method?

1010


What are passing parameters?

1008


What are the 3 types of loops in java?

987


Write a factorial program using recursion in java?

945


what is daemon thread and which method is used to create the daemon thread? : Java thread

905


Is it possible to define a method in java class but provide it’s implementation in the code of another language like c?

984


What is finalize method?

1042


How are destructors defined in java?

987


What is the most important feature of java? What is an interface?

953


Explain the difference between serializable and externalizable in java?

978