Skip to main content

Naming Convention

 

Naming Convention :


A naming convention is a convention for naming things:

Please find below the table for naming conventions:
Naming ConventionFormatExample
Camel CasecamelCase🐪aBcD
Kebab Casekebab-case🍢a-b-c-d
Snake Casesnake_case🐍a_b_c_d
Pascal CasePascalCase🧑‍🦳AbCd
Flat Caseflatcase📏abcd
Upper Flat CaseUPPERFLATCASEABCD
Screaming Snake CaseSCREAMING_SNAKE_CASE🐍A_B_C_D
Camel Snake Casecamel_Snake_Case🐪🐍ab_Cd
Pascal Snake CasePascal_Snake_CaseAb_Cd
Train CaseTrain-Case🚃Ab-Cd
Cobol CaseCOBOL-CASE🍢AB-CD



Comments

Popular posts from this blog

IOT Internet of things. In this we can operate things automatically . ---> Like fans, lights, TV, Doors, taps, all things which we need to go and put on or off. IMP point:   IOT allows things to work as per logic . Main Problem (The overflow of bins in society or cities has following impacts) Bacteria, insects and vermin thrive from garbage Overflowing waste causes air pollution and respiratory diseases. Garbage contaminates surface waters, which affects all ecosystems.  Direct handling of overflowing waste exposes for health risks.  Inefficient waste control is bad for municipal wellbeing. Their is no one to say that bin is fully occupied or please through this garbage and empty her. So IOT provides us a new concept which take care of overflow of garbage in cities. As we know without garbage city will be neat and clean. An because of this peoples,animals will be safe from any diseases. How to prevent waste bins from overflowing? Althou...

Simple java code

  Simple java code class Main{ /*Every application in Java must contain the main method. The Java compiler starts executing the code from the main method*/      public static void main(String anyVar[]){      System.out.println("Simple java code");       } } Output: Simple java code Screenshot: Online compiler:https://www.onlinegdb.com/online_java_compiler #happyCoding💁👍