top of page
Writer's pictureJino Shaji

What is a programming language?

Updated: Jun 9, 2020


A vocabulary and set of grammatical rules for instructing a computer to perform specific tasks. The term programming language usually refers to high-level languages, such as BASICCC++COBOL,FORTRANAda, and Pascal. Each language has a unique set of keywords (words that it understands) and a special syntax for organizing program instructions.

High-level programming languages, while simple compared to human languages, are more complex than the languages the computer actually understands, called machine languages. Each different type of CPU has its own unique machine language.

Lying between machine languages and high-level languages are languages called assembly languages. Assembly languages are similar to machine languages, but they are much easier to program in because they allow a programmer to substitute names for numbers. Machine languages consist of numbers only.

Lying above high-level languages are languages called fourth-generation languages (usually abbreviated 4GL). 4GLs are far removed from machine languages and represent the class of computer languages closest to human languages.

1 view0 comments

Recent Posts

See All

VB code to Unprotect Excel Sheet

Sub PasswordBreaker()     ‘Breaks worksheet password protection.     Dim i As Integer, j As Integer, k As Integer     Dim l As Integer, m...

Computer Programming Concepts

Computer programs are the collection of instructions that tells a computer how to interact with the user,interact with the computer...

Comments


bottom of page