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

 
 

SCJP Module-12 Question-2
Posted on: July 20, 2010 at 12:00 AM
The sample program given below will check your knowledge about the DataFormate class in Java.

Given below the sample code :

11 DateFormat df = DateFormat.getDateInstance();
12 Date date = new Date();
13 df.setLocale(Locale.ITALY);
14 String str = df.format(date);
15 System.out.println(str);

What will be the output of the above code?

1. current date

2. no output

3. compile error at line 13

4. current date and country name.

Answer

(3)

Explanation

Wrong way of setting Locale. The method setLocale(Locale) is undefined for the type DateFormat.

Related Tags for SCJP Module-12 Question-2:


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.