Software Engineering

Technical Documentation

Back

Coding

Introduction

What is Programming?

Programming is logic. Programming is thinking.

Programming is making decisions, or telling the computer what decisions to make under different circumstances. Once you've clicked the red button, you can program a computer/browser to access data and make a network request.

What is Coding?

Coding is a subset of programming. Coding encompasses the following topics and activities:

Programming Languages

Computers operate in machine code or binary strings of 0s and 1s. Programming languages allow users to translate human-operated commands into a format that computers can understand and execute.

There are hundreds of programming languages, and each language allows users to write instructions in a different syntax. Low-level languages are more similar to machine code, while high-level languages use words like "run" and "object" that are more similar to traditional written language. Developers may write the source code in an IDE or text editor and then compile the code into a machine language.

Some of the programming languages:

The 10 Most Popular Programming Languages to Learn in 2022.

  1. Python
  2. JavaScript
  3. Java
  4. C#
  5. C
  6. C++
  7. Go
  8. R
  9. Swift
  10. PHP

References

Back