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 / manikandan [ gtec,vellore ]

Answer is 1)B because we directly calling a process method
in class B

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to Sort Strings which are given in List and display in ascending order without using java api.

4519


Explain about static imports in java?

1049


What is a layout manager and what are different types of layout managers available in java awt?

1311


What are the parts of a method?

1034


What is complexity and its types?

1105


What is the difference between actual and formal parameters?

1006


Can we override constructors?

1054


What is map in java?

1054


Explain the use of sublass in a java program?

1082


Explain about the dynamic behavior of core java?

1190


Which method you will use to create a new file to store some log data. Each time a new log entry is necessary, write string to the file in java ?

1216


What is main in java?

1214


can used Protected Class outside Function.?

1160


What’s the difference between callable and runnable?

1190


What is class??

1300