Site Search:

Flash Card List 2 -- Card 7

Prev Next


How many compile errors in the following code?
  4     System.out.println(LocalDate.of(2016, 7, 12));
  5     System.out.println(LocalDate.of(2016,07, 12));
  6     LocalDate.of(2016, MONTH.JULY, 12);
  7     System.out.println(LocalDate.of(2016, Month.JULY, 12));


line 6 does not compile, the other 3 lines output 2016-07-12