Multiple choice Which of the following is a false statement? A constructor can not be inherited by the subclass. A final method can not be override in the subclass. A constructor can be declared final. A final class can not be extended. None of the above Reveal answer Fill a bubble to check yourself C Correct answer Explanation No, we can not declared a constructor as final because the final method can be inherited but can not be overridden and the constructor can not be inherited.