Question: What does `log.Fatal` do?
- It raises a panic.
- It prints the log and then raises a panic.
- It prints the log and then safely exits the program.
- 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.