Which of the following is the correct date function?
-
=DATE(2008:12:25)
-
=DATE(2008,12,25)
-
=DATE(25,12,2008)
-
DATE(2008:12:25)
B
Correct answer
Explanation
The DATE function in Excel requires three comma-separated arguments in the order: year, month, and day. Option B correctly shows DATE(2008,12,25) using commas as separators. Options A and D incorrectly use colons (:) which are not valid parameter separators in Excel functions. Option C has the parameters in the wrong order (day, month, year).