Multiple choice technology testing

What will be the output ? Dim MyVar MyVar = Month(Now)

  1. current date

  2. current time

  3. current year

  4. current month

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

Month(Now) extracts just the month number (1-12) from the current date and time returned by Now(). It does not return the full date, time, or year - only the numeric month component.