Identifiers
Identifiers
Identifiers are the names given by a programmer to a class name, method name, variable
*for identifiers, acceptable characters are A-Z, a-z, 0-9 digits, and special characters only $ and _
*if a class name has only one word, then it should be written as the first letter capitalized
*if a class name has multiple words, then the first letter of each word should be capital
*if a method name has one word, then it should be written in lowercase with ().
*if the method name has multiple words, then the first word should be written in small
letters and from the second word, the first letter of each word should be capitalized with ().
*if a variable name has one word, then it should be written in small letters.
*if the method name has multiple words, then the first word should be written in small
letters and from the second word, the first letter of each word should be capitalized.
➔ ageOfStudent, nameOfEmployee