SCJP Module-12 Question-2


 

SCJP Module-12 Question-2

The sample program given below will check your knowledge about the DataFormate class in Java.

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.

Ads