C# Interview question :- Can you explain difference between Pascal notation, Camel notation and hungarian notation ?
Shivprasad Koirala
Pascal Notation- In this naming convention all starting letter of the words are in Upper Case and other characters are lower case.
Example: SupplierCode
Camel Notation- In this naming convention first character of all words, except the first word are Upper Case and other characters are lower case.
Example: supplierCode
Hungarian Notation - In this naming convention the variable name starts with group of small letter which indicate data type.
Example: bLoop ( b indicates its a Boolean type), Sum ( i indicated its a integer data type).
Regards,See our 21 important interview questions atc# interview questions and answers