There are 3 types of naming convention pascal,hungarian and Camel.
Pascal notation starts with all first letter of the word capital. For example
"Customercode" where you can see "C" letter capital in both the words.
Camel notation starts with all first letter capital except the first letter of
the first word. For example "customerCode", you can see the first letter "c"
small and the other "C" of the letter code capital.
Hungarian notation starts with first word as the datatype prefix. For instance "intCount","boolIsValie"
etc. The first word describes the datatype lik int, bool etc.
Pascal notation starts with all first letter of the word capital. For example
"Customercode" where you can see "C" letter capital in both the words.
Camel notation starts with all first letter capital except the first letter of
the first word. For example "customerCode", you can see the first letter "c"
small and the other "C" of the letter code capital.
Hungarian notation starts with first word as the datatype prefix. For instance "intCount","boolIsValie"
etc. The first word describes the datatype lik int, bool etc.