Coding Standards and Guidelines
Last Updated :
23 May, 2024
Different modules specified in the design document are coded in the Coding phase according to the module specification. The main goal of the coding phase is to code from the design document prepared after the design phase through a high-level language and then to unit test this code.
What is Coding Standards and Guidelines?
Good software development organizations want their programmers to maintain to some well-defined and standard style of coding called coding standards. They usually make their own coding standards and guidelines depending on what suits their organization best and based on the types of software they develop. It is very important for the programmers to maintain the coding standards otherwise the code will be rejected during code review.
Purpose of Having Coding Standards
The following are the purpose of having Coding Standards:
- A coding standard gives a uniform appearance to the codes written by different engineers.
- It improves readability, and maintainability of the code and it reduces complexity also.
- It helps in code reuse and helps to detect errors easily.
- It promotes sound programming practices and increases the efficiency of the programmers.
Coding Standards in Software Engineering
Some of the coding standards are given below:
- Limited use of globals: These rules tell about which types of data that can be declared global and the data that can't be.
- Standard headers for different modules: For better understanding and maintenance of the code, the header of different modules should follow some standard format and information. The header format must contain below things that is being used in various companies:
- Name of the module
- Date of module creation
- Author of the module
- Modification history
- Synopsis of the module about what the module does
- Different functions supported in the module along with their input output parameters
- Global variables accessed or modified by the module
- Naming conventions for local variables, global variables, constants and functions: Some of the naming conventions are given below:
- Meaningful and understandable variables name helps anyone to understand the reason of using it.
- Local variables should be named using camel case lettering starting with small letter (e.g. localData) whereas Global variables names should start with a capital letter (e.g. GlobalData). Constant names should be formed using capital letters only (e.g. CONSDATA).
- It is better to avoid the use of digits in variable names.
- The names of the function should be written in camel case starting with small letters.
- The name of the function must describe the reason of using the function clearly and briefly.
- Indentation: Proper indentation is very important to increase the readability of the code. For making the code readable, programmers should use White spaces properly. Some of the spacing conventions are given below:
- There must be a space after giving a comma between two function arguments.
- Each nested block should be properly indented and spaced.
- Proper Indentation should be there at the beginning and at the end of each block in the program.
- All braces should start from a new line and the code following the end of braces also start from a new line.
- Error return values and exception handling conventions: All functions that encountering an error condition should either return a 0 or 1 for simplifying the debugging.
Coding Guidelines in Software Engineering
Coding guidelines give some general suggestions regarding the coding style that to be followed for the betterment of understandability and readability of the code.
Some of the coding guidelines are given below :
- Avoid using a coding style that is too difficult to understand: Code should be easily understandable. The complex code makes maintenance and debugging difficult and expensive.
- Avoid using an identifier for multiple purposes: Each variable should be given a descriptive and meaningful name indicating the reason behind using it. This is not possible if an identifier is used for multiple purposes and thus it can lead to confusion to the reader. Moreover, it leads to more difficulty during future enhancements.
- Code should be well documented: The code should be properly commented for understanding easily. Comments regarding the statements increase the understandability of the code.
- Length of functions should not be very large: Lengthy functions are very difficult to understand. That's why functions should be small enough to carry out small work and lengthy functions should be broken into small ones for completing small tasks.
- Try not to use GOTO statement: GOTO statement makes the program unstructured, thus it reduces the understandability of the program and also debugging becomes difficult.
Advantages of Coding Guidelines
- Coding guidelines increase the efficiency of the software and reduces the development time.
- Coding guidelines help in detecting errors in the early phases, so it helps to reduce the extra cost incurred by the software project.
- If coding guidelines are maintained properly, then the software code increases readability and understandability thus it reduces the complexity of the code.
- It reduces the hidden cost for developing the software.
Conclusion
Coding standards and guidelines ensure consistent, readable, and maintainable code, promoting efficient development and error detection. They standardize naming, indentation, and documentation practices, reducing complexity and facilitating code reuse. Adhering to these practices enhances overall software quality and development efficiency.
Similar Reads
Planning Guidelines in Software Engineering Planning guidelines are generally written statement that contains guidance to be referred before any development and establishing take place of a project. Planning guidelines are often used for purpose of uniformity, comfort, and safe development. These planning guidelines should be followed by any
4 min read
Standard Industrial Classification ( SIC ) Codes || Complete Guide If you're starting a software company, you'll need your SIC code to file taxes, fill out loan applications, and fill out other paperwork. In the following article, we are going to find out what is SIC Code, Different SIC Codes for different businesses, the importance of the SIC Code, as well as some
6 min read
Lines of Code (LOC) in Software Engineering A line of code (LOC) is any line of text in a code that is not a comment or blank line, and also header lines, in any case of the number of statements or fragments of statements on the line. LOC consists of all lines containing the declaration of any variable, and executable and non-executable state
4 min read
Arithmetic Encoding and Decoding Using MATLAB Arithmetic coding is a type of entropy encoding utilized in lossless data compression. Ordinarily, a string of characters, for example, the words "hey" is represented for utilizing a fixed number of bits per character. In the most straightforward case, the probability of every symbol occurring is eq
6 min read
Language Processing Activities Language processing activity bridges the ideas of software designers with actual execution on the computer system. The designer expresses the idea related to the application domain of the software. To implement these ideas, the description of the ideas has to be interpreted as related to the executi
3 min read
Structured Analysis and Design with CASE Tools - Software Engineering Several representation techniques are used for structured analysis and structured style. The subsequent support could be offered from CASE tools. A CASE tool ought to support one or a lot of structured analysis and style techniques. It ought to support effortlessly drawing analysis and style diagram
2 min read
Function Oriented Design - Software Engineering The design process for software systems often has two levels. At the first level, the focus is on deciding which modules are needed for the system based on SRS (Software Requirement Specification) and how the modules should be interconnected. Function Oriented Design is an approach to software desig
3 min read
Design Goals and Principles of Object Oriented Programming The fundamental goal of dealing with the complexity of building modern software naturally gives rise to several sub-goals. These sub-goals are directed at the production of quality software, including good implementations of data structures and algorithms. The article focuses on discussing design go
13 min read
Software Inspection Checklist A software inspection checklist is a list of items that are reviewed during a software inspection. These items are designed to help ensure that the code meets the requirements of the project and adheres to established standards and best practices. Some common items that may be included in a software
5 min read
Language Evaluation Criteria Language evaluation criteria in programming languages are sets of standards and principles used to assess the quality and effectiveness of programming languages. These criteria are used to evaluate the features, design, syntax, and semantics of programming languages in order to determine their suita
7 min read