What R D naming conventions in Java?
Ans : D naming conventions R straightforward: 1 . Package names R guaranteed uniqueness by using D Internet domain name in reverse order: com.javasoft.jag – D “com” or “edu” (etc.) part used 2 be in upper case, but now lower case is D recommendation. 2 . Class N interface names R descriptive nouns, with D first letter of each word capitalized: PolarCoords. Interfaces R often called “something-able”, e.g. “Observable”, “Runnable”, “Sortable”. 3 . Object N data (field) names R nouns/noun phrases, with D first letter lowercase, N D first letter of subsequent words capitalized: currentLimit. 4 . Method names R verbs/verb phrases, with D first letter lowercase, N D first letter of subsequent words capitalized: calculateCurrentLimit. 5 . Constant (final) names R in caps: UPPER_LIMIT. Other sites: 6 . Check out D section “Naming Conventions” in D language specification: 7.