Which of the following can be inserted into the blank to create a date of June 21, 2014?
Choose all that apply.
import java.time.*; public class Main { public static void main(String[] args) { LocalDate date = } }
D, F.
Options A and B are incorrect because LocalDate does not have a public constructor.
Option C is incorrect because months start counting with 1 rather than 0.
Option E is incorrect because it uses the old Calendar constants for months, which begin with 0.
Options D and F are both correct ways of specifying the desired date.