Oracle Database Administration I — Question 172

You execute this query:
SELECT TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE), 'MON'), 'dd `Monday for` fmMonth rrrr')
What is the result?

Answer options

Correct answer: B

Explanation

The query successfully retrieves the date of the first Monday of the next month after determining the last day of the current month. Option A is incorrect because the query does return a result, while options C and D do not match the expected output of the query.