Home Tutorial Java Scjp Part12 SCJP Module-12 Question-7

 
 

SCJP Module-12 Question-7
Posted on: July 22, 2010 at 12:00 AM
The Sample program given below will test your understanding about how to formate the Date in Java.

Given below the sample code :

1. public static void format(String str) {
2. try {
3. float flt = Float.parseFloat(str);
4. } catch (NumberFormatException nfe) {
5. flt = 0;
6. } finally {
7. System.out.println(flt);
8. }
9. }
10.public static void main(String[] args) {
11.format("illlegal");
12.}

What will be the output of the above code ?

1. Compile error

2. 0.0

3. No output

4. 0

Answer

(1)

Related Tags for SCJP Module-12 Question-7:


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.