Multiple choice Which of the following is a false statement? Catch statement can rethrow an exception in Java. Empty catch block is accepted by Java. Main is a daemon thread. Garbage collector is a daemon thread. Garbage collector can also run forcibly. Reveal answer Fill a bubble to check yourself C Correct answer Explanation Main is not a daemon thread, also any thread stem from main will be non daemon because daemon is derived from parent Thread class.