Home Tutorial Java Scjp Part6 SCJP Module-6 Question-6

 
 

SCJP Module-6 Question-6
Posted on: July 14, 2010 at 12:00 AM
The program given below will test your understanding about the try block catch block and finally block and order of using them in a program.

Given below the sample code :

public class section66 {
public static void main(String[] args) {
try {
System.out.println("Inside try");
} finally {
System.out.println("Inside finally ");
}
System.out.println("at end of the code");
}
}

Find the error in the above code :

1.try block without 'catch'.

2.No errors. Prints :   Inside try
                                 Inside finally
                                 at end of the code

3. Can't use try block inside main.

4.  Finally must be after 'catch'.

Answer :

(2)

Explanation :

Can use 'try' block without 'catch' And also finally without 'catch'.

Related Tags for SCJP Module-6 Question-6:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.