Question: What does `log.Fatal` do?

  1. It raises a panic.
  2. It prints the log and then raises a panic.
  3. It prints the log and then safely exits the program.
  4. It exits the program.

Answer: The correct answer of the above question is Option C:It prints the log and then safely exits the program.