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("mm:hh:ss");
System.out.print(sdf.format(date));
}
}
Note : The program is executed at 3 hour 55 minutes and 4 sec (24 hours time).
import java.text.*;
import java.util.*;
class Date_formatting
{
public static void main(String args[])
{
Date date = new Date();
SimpleDateFormat sdf;
sdf = new SimpleDateFormat("mm:hh:ss");
System.out.print(sdf.format(date));
}
}
A. 3:55:4
B. 3.55.4
C. 55:03:04
D. 03:55:04
Answer: Option C
Related Questions on Regular Expressions in Java
What is a regular expression in Java?
A. A pattern that describes a set of strings
B. A Java class for reading regular expressions
C. A Java method for creating strings
D. A Java package for file operations
Which class is used to compile a regular expression in Java?
A. `String`
B. `Regex`
C. `Matcher`
D. `Pattern`
In a regular expression, what does the metacharacter `.` represent?
A. A digit
B. A space
C. Any character
D. A word
What does the character class `[A-Za-z]` match in a regular expression?
A. Any special character
B. Any uppercase or lowercase letter
C. Any whitespace character
D. None of These
Join The Discussion