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...


how and when compiler knows that the Java code throws the
checked Exception.

Answers were Sorted based on User's Feedback



how and when compiler knows that the Java code throws the checked Exception...

Answer / aruna

Checked or caught exceptions are those exceptions that the
application programmer created a catch block to handle them.
while compiling, the java compiler make sure that all the
checked exceptions must be caught by the applicaion
programmer.Those exceptions are called the application or
business logic exceptions.

Inside the method body, there are calls to other methods;
the compiler looks at each of their method signature, what
exceptions they declared to throw. There are two
possibilities, either exceptions are caught inside the
caller-method by a try-catch block, or the caller declares
to throw the exception to its caller.

Is This Answer Correct ?    18 Yes 4 No

how and when compiler knows that the Java code throws the checked Exception...

Answer / vatsal doshi

When: At Compile Time

How: Complicated.

Checked Exceptions are those which a Java Compiler is capable of checking at compile time. These exceptions normally occur when some pre-definite methods from the Java API are used by programmer. So compiler identifies such method invocations in the code. If handled using catch, or specified in the throws clause, compiler compiles successfully. Otherwise, it shows a Compile Time Error Message of possibility of a Checked Exception

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Core Java Interview Questions

What does || mean in code?

0 Answers  


What do you meant by active and passive objects?

0 Answers   Wipro,


What is meant by class loader? How many types are there?

0 Answers  


When does Exception occurs?

3 Answers  


Thanks A.jyotsna, Can u tell me differnce between abstract class and interface vikash

4 Answers  


What is difference between adapter class and listener?

0 Answers  


Why is java so popular?

0 Answers  


What is the difference between an interface and an abstract class?

0 Answers   Cyient,


What are mutable classes?

0 Answers  


Explain the available thread states in a high-level?

0 Answers  


What is the difference between yielding and sleeping in java programming?

0 Answers  


In a container there are 5 components. I want to display the all the components names, how will you do that one?

0 Answers  


Categories