Computer Science

What are the points to be taken care while assigning variables in Java programming?

Values & Data Types Java

4 Likes

Answer

  1. Name of the variable should be a sequence of alphabets, digits, underscore and dollar sign characters only.
  2. It should not start with a digit.
  3. It should not be a keyword or a boolean or null literal.

Answered By

2 Likes


Related Questions