Question: Which is the most up-to-date way to instantiate the current date?

  1. `new SimpleDateFormat("yyyy-MM-dd").format(new Date())`
  2. `new Date(System.currentTimeMillis())`
  3. `LocalDate.now()`
  4. `Calendar.getInstance().getTime()`

Answer: The correct answer of the above question is Option C:`LocalDate.now()`