Computer Programming : The Basics

Computer Program :
Computer programming is the act of composing the selected programming language's elements in the order that will cause the desired effect. The effect could be different in every specific case – it's up to the programmer's imagination, knowledge and experience.
The composition has to be correct in many senses:
  • alphabetically – a program needs to be written in a recognizable script, such as Roman, Cyrillic, etc.
  • lexically – each programming language has its dictionary and needs to be mastered
  • syntactically – each language has its rules and they must be followed
  • semantically – the program has to make sense
Difference between High-level vs Low-level programming language

Machine code is a program written in machine language, which consists of sequences of digital binary numbers: 0s and 1s.  A low-level programming language consisting of binary digits/bits that the computer reads and understands.


Difference between a compiler and Interpreter


Due to historical reasons, languages designed to be utilized in the interpretation manner are often called scripting languages, while the source programs encoded using them are called scripts.

Comments