Multiple choice technology programming languages

Static variables are implicitly final.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Static variables belong to the class and are shared across all instances. They are not implicitly final - their value can be modified. The 'final' keyword must be explicitly added to make a static variable constant.