which of the following is the default format for date display
-
DD-MM-YYYY
-
DD-Mon-RR
-
DD-Mon-YY
-
DD-MON-RR
D
Correct answer
Explanation
In Oracle SQL, the default date format is DD-MON-RR (e.g., 07-JUL-26). This uses the RR format which automatically handles century crossing for years 0-99. MON represents the three-letter month abbreviation in uppercase. Other formats like DD-MM-YYYY or DD-Mon-YY must be explicitly specified.