What is the output of the following code?
public class Main{ public static void main(String[] argv){ LocalDate date = LocalDate.of(2016, Month.APRIL, 40); System.out.println(date.getYear() + " " + date.getMonth() + " " + date.getDayOfMonth()); } }
F.
40th day in April is not valid.