🎴 Flashcard Mode
Information Technology Mixed Test - 3
Card1 / 20
Mastered0
Review0
QuestionClick to flip
Which of the c constants cannot be changed and are declared by using the keyword?
AnswerClick to flip back
A
Final
💡 Explanation:
Final is a keyword which is used in three cases: (1) a final class means you cannot extend the class, i.e. you can't make a subclass, (2) a final method means you can not override the method, (3) a final variable means you cannot change it's value.