C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
CodingThe coding is the process of transforming the design of a system into a computer language format. This coding phase of software development is concerned with software translating design specification into the source code. It is necessary to write source code & internal documentation so that conformance of the code to its specification can be easily verified. Coding is done by the coder or programmers who are independent people than the designer. The goal is not to reduce the effort and cost of the coding phase, but to cut to the cost of a later stage. The cost of testing and maintenance can be significantly reduced with efficient coding. Goals of Coding
For implementing our design into code, we require a high-level functional language. A programming language should have the following characteristics: Characteristics of Programming LanguageFollowing are the characteristics of Programming Language: Readability: A good high-level language will allow programs to be written in some methods that resemble a quite-English description of the underlying functions. The coding may be done in an essentially self-documenting way. Portability: High-level languages, being virtually machine-independent, should be easy to develop portable software. Generality: Most high-level languages allow the writing of a vast collection of programs, thus relieving the programmer of the need to develop into an expert in many diverse languages. Brevity: Language should have the ability to implement the algorithm with less amount of code. Programs mean in high-level languages are often significantly shorter than their low-level equivalents. Error checking: A programmer is likely to make many errors in the development of a computer program. Many high-level languages invoke a lot of bugs checking both at compile-time and run-time. Cost: The ultimate cost of a programming language is a task of many of its characteristics. Quick translation: It should permit quick translation. Efficiency: It should authorize the creation of an efficient object code. Modularity: It is desirable that programs can be developed in the language as several separately compiled modules, with the appropriate structure for ensuring self-consistency among these modules. Widely available: Language should be widely available, and it should be feasible to provide translators for all the major machines and all the primary operating systems. A coding standard lists several rules to be followed during coding, such as the way variables are to be named, the way the code is to be laid out, error return conventions, etc. Coding StandardsGeneral coding standards refers to how the developer writes code, so here we will discuss some essential standards regardless of the programming language being used. The following are some representative coding standards:
Coding GuidelinesGeneral coding guidelines provide the programmer with a set of the best methods which can be used to make programs more comfortable to read and maintain. Most of the examples use the C language syntax, but the guidelines can be tested to all languages. The following are some representative coding guidelines recommended by many software development organizations. 1. Line Length: It is considered a good practice to keep the length of source code lines at or below 80 characters. Lines longer than this may not be visible properly on some terminals and tools. Some printers will truncate lines longer than 80 columns. 2. Spacing: The appropriate use of spaces within a line of code can improve readability. Example: Bad: cost=price+(price*sales_tax) Better: cost = price + ( price * sales_tax ) 3. The code should be well-documented: As a rule of thumb, there must be at least one comment line on the average for every three-source line. 4. The length of any function should not exceed 10 source lines: A very lengthy function is generally very difficult to understand as it possibly carries out many various functions. For the same reason, lengthy functions are possible to have a disproportionately larger number of bugs. 5. Do not use goto statements: Use of goto statements makes a program unstructured and very tough to understand. 6. Inline Comments: Inline comments promote readability. 7. Error Messages: Error handling is an essential aspect of computer programming. This does not only include adding the necessary logic to test for and handle errors but also involves making error messages meaningful.
Next TopicProgramming Style
|