2.1.Naming
Java programming language follows specific rules and conventions for naming variables. Variable names are case-sensitive and can be any legal identifier, including letters, dollar signs, or underscores. However, it is customary to start variable names with a letter, refrain from using the dollar sign, and use white space strictly.
When selecting a name for variables, avoid using cryptic abbreviations and use full words to facilitate code comprehension and self-documentation. The name must not be a reserved word or keyword. If the name consists of only one word, it should be spelled in all lowercase letters and capitalize the initial letter of each subsequent word. The underscore character is used to separate subsequent words and capitalize each letter, but is never used in any other context.
In summary, Java programming language follows specific rules and conventions for naming variables, including using full words, avoiding cryptic abbreviations, and using lowercase letters for variable names.