Multiple choice

The _______ constructor displays the current date.

  1. Day ()

  2. Today ()

  3. Date ()

  4. Now ()

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The Date() constructor in Java creates a Date object representing the current date and time when instantiated without arguments. It initializes the object with the system's current time, making it the correct choice for displaying the current date.