Which of the following print out a date representing April 1, 2020?
Choose all that apply
B, D.
The new date APIs added in Java 8 use static methods rather than a constructor to create a new date, making options E and F incorrect.
The months are indexed starting with 1 in these APIs, making options A and C incorrect.
Option A uses the old Calendar constants which are indexed from 0.
Options B and D are correct.