Multiple choice Which of the following statements is true regarding final keyword in Java? A final class can be extended by another class. A final method can be overridden when its class is inherited. A final variable's value cannot be changed. The keywords final and finally have the same meaning in Java. Final class can be abstract in Java. Reveal answer Fill a bubble to check yourself C Correct answer Explanation This is the correct answer. A final variable is equivalent to a constant. Once a value is assigned to it, it cannot be changed.