Which of the following can be inserted into the blank to create a date of June 21, 2016?
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 Calendar.JUNE counts months from 0.