053447

Which of the following calendaring syntax expressions would evaluate to the last day of every month?
A. FREQ = MONTHLY; BYMONTHDAY = 31
B. FREQ = MONTHLY; BYMONTHDAY = -1
C. FREQ = DAILY; BYDAY = -1
D. FREQ = MONTHLY; BYDAY = 31
E. FREQ = DAILY; BYMONTHDAY = LAST_DAY

  The BYMONTHDAY element accepts negative values that represent a specific count of days from the end of the month.Also,the FREQ parameter must be set to MONTHLY because it will execute every month.

原文地址:https://www.cnblogs.com/Babylon/p/7833457.html