Shivprasad Koirala
C# Interview question :- Can you explain difference between Pascal notation, Camel notation and hungarian notation ?
By Shivprasad Koirala in ASP.NET on Mar 02 2011
  • Shivprasad Koirala
    Mar, 2011 2

    C# Interview question :- Can you explain difference between Pascal notation, Camel notation and hungarian notation ?
     

    Answer:

    The abovec# interview question is asked to ensure if you have used coding standards in your project. All the above 3 things are  nothing but naming conventions which are followed in programming languages to ensure a clean code. Below is the explanation of each naming convention.

    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

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS