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("E MMM dd yyyy");
System.out.print(sdf.format(date));
}
}
Note: The program is executed at 3 hour 55 minutes and 4 sec on Monday, 15 July(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("E MMM dd yyyy");
System.out.print(sdf.format(date));
}
}
A. Mon Jul 15 2013
B. Jul 15 2013
C. 55:03:04 Mon Jul 15 2013
D. 03:55:04 Jul 15 2013
Answer: Option A
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