---
title: "What are some common naming conventions used in programming?"  
description: "What are some common naming conventions used in programming?"  
author: "Anonymous User"  
published: 2019-12-10  
updated: 2019-12-10  
canonical: https://www.mindstick.com/forum/145555/what-are-some-common-naming-conventions-used-in-programming  
category: "c#"  
tags: ["c#", ".net", "programming language", "naming convention"]  
reading_time: 1 minute  

---

# What are some common naming conventions used in programming?

[Please describe](https://www.mindstick.com/interview/33713/please-describe-the-relationship-between-seo-and-sem) some [common](https://www.mindstick.com/articles/23170/10-most-common-accounting-mistakes-of-small-business) [naming conventions](https://www.mindstick.com/forum/145556/what-are-the-categories-of-naming-conventions) used in programming.

## Replies

### Reply by Nishi Tiwari

#### Pascal Case

The first character of all words is upper case & other characters are lower case.

Mainly used by classes and method name.

```
For example: - class HelloWorld, void HelloWorld ().
```

#### Camel Case

The first character of all words, except the first word, is upper case & other characters are lower case.

Mainly used by variables and method parameters.

```
For example:-studentName, Student (firstName, lastName).
```

#### Hungarian Notation

The word starts with lower case prefix and rest of the word is in Pascal case.

```
 For example: - strStudentName.
```

In this str represents string.

#### Snake Case

In snake case words are separated by underscore (_).

```
For example: - student_name.
```

#### Kebab Case

In this case words are separated by hyphen (-).

```
For example:-student-name.
```


---

Original Source: https://www.mindstick.com/forum/145555/what-are-some-common-naming-conventions-used-in-programming

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
