Briefly explain naming convention
Briefly explain naming convention

Naming Convention
Naming convention is the concept one should obey when one decide what to call your identifiers like class, set, element, method, constant, etc.
Still, they 're not compelled to comply. So, it's known as not rule convention. Many Java groups such as Netscape and Sun Microsystems propose such conventions.
All Java programming language classes, packages, interfaces, fields, and methods are provided according to a naming convention. If one fail to obey these conventions, confusion or misleading code can be created.
Advantage:
By using standard naming conventions, one can make it easier for oneself and other for programmers to read a code. It's really necessary the Java software is readable. It shows less time spent on figuring out what a code does.
A following are a main rules which every identifier should follow:
The name should have no white spaces in it.
Special characters as: $(dollar), & (ampersand), (underscore) must not start with the name.
Step by step
Solved in 3 steps









