What do you mean by constant? Explain with an example.
193 Likes
The keyword final before a variable declaration makes it a constant. Its value can't be changed in the program.
Example:
final int DAYS_IN_A_WEEK = 7;
Answered By
129 Likes
What do you mean by data type?
Define variable with an example.
State two kinds of data types.
What is a token? Name different types of tokens.