Please enable JavaScript.
Coggle requires JavaScript to display documents.
Java Coding Standards, PascalCase is a programming naming convention where…
Java Coding Standards
-
Naming
-
-
-
-
Names representing methods must be verbs and written in camelCase.
Ex:-getName(), computeTotalWidth()
Statements
-
-
Loops
The loop body should be wrapped by curly brackets irrespective of how many lines there are in the body.
-
PascalCase is a programming naming convention where the first letter of each compound word in a variable is capitalized ..Ex:- StudentName, AudioSystem
CamelCase is a way to separate the words in a phrase by making the first letter of each word capitalized and not using spaces...Ex:- myName, audioSystem