Vidyalelo
Java Programming · Q31

Java Regular Expressions

Programming · Java Programming · question 31

Q31

What will be the output of the following Java program? import java.text.*; import java.util.*; class Date_formatting public static void main(String args[]) Date date = new Date(); SimpleDateFormat sdf; sdf = new SimpleDateFormat("hh:mm:ss"); System.out.print(sdf.format(date)); Note : The program is executed at 3 hour 55 minutes and 4 sec (24 hours time).

A.
3:55:4
B.
3.55.4
C.
55:03:04
D.
03:55:04
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board