15+ Terms and Terminologies in Programming Languages

Common terms in the computer programming world

Amit Chauhan
3 min readJul 8, 2023
Photo by Alex Chumak on Unsplash

How computer gives output in programming

To make the computer understand the input, we need to give it some instructions so that the computer can understand.

Types of software:

  1. System software for operating system related.
  2. Application software for the outside world, i.e., notepad, MS Office, etc.

We have so many programming languages, but computers can only understand machine language (binary language i.e., 0 & 1).

Evolution of high-level languages:

These languages evolve due to the disadvantages of machine language, as they are hard to understand. High-level language consists of English words to make the programmer more comfortable in understanding. But still, computers understand only machine language.

Now the translator is used to translate high-level language to machine-level language. The translator can be a compiler or interpreter.

  • Cross-Pollination: Every language is made up of the existing language then, with enhancement features, a new language is developed.

--

--