Computer Science
What are the points to be taken care while assigning variables in Java programming?
Values & Data Types Java
4 Likes
Answer
- Name of the variable should be a sequence of alphabets, digits, underscore and dollar sign characters only.
- It should not start with a digit.
- It should not be a keyword or a boolean or null literal.
Answered By
2 Likes