Given: 12.Date date = new Date(); 13.df.setLocale(Locale.ITALY); 14.String s = df.format(date); The variable df is an object of type DateFormat that has been initialized in line 11. What is the result if this code is run on December 14, 2000?()
- AThe value of s is 14-dic-2000.
- BThe value of s is Dec 14, 2000.
- CAn exception is thrown at runtime.
- DCompilation fails because of an error in line 13.