They must be followed while developing software in java for good maintenance and readability of code. Java uses CamelCase as a practice for writing names of methods, variables, classes, packages and constants.
camelCase is a naming convention in which the first letter of each word in a compound word is capitalized, except for the first word.
newStudent;
getNewStudent()
myVariableNameHere;