Coding Standards/conventions Question:

What are the conditions of CamelCase coding standard?

Coding Standards Interview Question
Coding Standards Interview Question

Answer:

☆ The first letter is capitalized.
☆ One or more letters in that word are also capitalised.
☆ The word does not end on a capitalized letter: CamelCasE
☆ No two capitalised letters shall follow directly each other: CamelCAse
☆ No number in that word at any place: CamelCase1more
☆ No dot(.), under_score or dash (-) within the word, only letters: Camel_Case


Previous QuestionNext Question
From where CamelCase gained popularity?What is the structure of Coding Standard?