What error occurs if a try-catch-finally statement sequence
does not have a catch clause?

Answers were Sorted based on User's Feedback



What error occurs if a try-catch-finally statement sequence does not have a catch clause?..

Answer / niranjanravi

no error will occur

Is This Answer Correct ?    4 Yes 2 No

What error occurs if a try-catch-finally statement sequence does not have a catch clause?..

Answer / nagaraju

we can have try block with out catch block, but we should
have finally block after try block(if catch block is not
there). If any exception occurs in the try block or not
finally block will be executed.

Is This Answer Correct ?    2 Yes 1 No

What error occurs if a try-catch-finally statement sequence does not have a catch clause?..

Answer / ravikiran

finally if system doenn't exit

Is This Answer Correct ?    2 Yes 2 No

What error occurs if a try-catch-finally statement sequence does not have a catch clause?..

Answer / deepak

yes

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Can we have try block without catch block?

0 Answers  


What is immutable state?

0 Answers  


What is the latest java version?

0 Answers  


What are the 3 types of control structures?

0 Answers  


we know that every java prog must follows OOPS Principles. Anybody can answer, HOW THE FOLLOWING PROGRAM FOLLOWS OOPS CONCEPTS i.e, Inheritance,Polymarphism,Encapsulation? class a{ public static void main(String args[]){ System.out.println("Hello World"); } }

3 Answers  


Difference between Choice and a List?

1 Answers  


Write a program to calculate factorial in java?

0 Answers  


How many types of classes are there in java?

0 Answers  


Can a final method be overloaded?

0 Answers  


What is the implementation of destroy method in java. Is it native or java code?

0 Answers  


Is java a pure object oriented language?

0 Answers  


What is api in java?

0 Answers  


Categories