asked 183k views
3 votes
It is common practice to use a ________ variable as a size declarator. static reference final boolean

asked
User Mrsteve
by
8.2k points

1 Answer

2 votes
The answer is final. It is common practice to use a final variable as a size declarator. static, reference, final, boolean. Final variables are often declared with the static keyword in Java and are treated as constants. Once a final variable has been assigned, it always contains the same value.
answered
User Renan Barbosa
by
8.9k points