c. Single density double sided
d. Double density double sided.
CHAPTER 7 (COMPUTER LANGUAGE)
What is Language?
A Language is a method of communication. By the help of which we complete dally works easily and properly & communicate
to one another our ideas and emotions.
What is Computer Language?
A Computer Language is a means of communication used to communicate between people and the computer. With
the help of a computer language a programmer tells a computer what he wants it to do.
The computer Language is called Programming Language. Like the computer hardware, programming languages also improved
periodically. It is improved from machine level language where 0s & 1s are used which is called binary digits to the
mathematical & English term called problem-oriented language.
The Programming Language is classified into 3 broad categories.
1. MACHINE LANGUAGE /or/ LOW-LEVEL-LANGUAGE (LLL)
2. ASSEMBLY LANGUAGE /OR/ MEDIUM-LEVEL-LANGUAGE (MLL)
3. HIGH-LEVEL-LANGUAGE. (HLL)
MACHINE LANGUAGE /or/ LOW-LEVEL-LANGUAGE: - Machine Level Language uses machine code. It is a computer own
understandable language. Computer can understand this language directly. This language is written in “0s & 1s”.
Example: - 5 can be written as : - 00000101
12 can be written as : - 00001100 etc.
Here 00001100 represent 12
Binary Language. “0” & “1” is called bit. Combination of 8 bit forms a bite.
ASSEMBLY LANGUAGE /OR/ MEDIUM-LEVEL-LANGUAGE: - It was very problematic to write binary language or Machine
Language directly. So an Assembly Language was developed where some mathematical codes are sued instead of “0” & “1” to
make the language human understandable. A compiler compiles that code to “0” & “1” after that for the computer.
Example: - ADD is used for Addition
SUB is used for Subtraction.
This language was easier than the machine language to understand.
HIGH-LEVEL-LANGUAGE: - It is English like language. There are many high level languages which differ from machine to
machine. It requires a translator to convert the high level language to machine level language. The Compiler, Interpreter &
Assembler are called Translator. Hare Compiler Check the errors in the language, Interpreter convert the language to machine
codes & Assembler assemble the interpreted language for proper functioning of the program.
Example: a. FORTRAN, b. COBOL, c. BASIC, d. PASCAL, d. PL-I
A. FORTRAN: - One of the oldest & most popular High Level Language is FORTRAN which stands for FORmula TRANslator.
Originally developed by IBM for its 704 computers in 1957. FORTRAN was design to solve scientific & engineering problems and
is currently the most popular among scientist & engineers.
B. COBOL: - COBOL is the acronyms of Common Business Oriented Language. This language was designed for business
data processing and till today it is the most widely used business-oriented programming language. The vocabulary and
grammars of COBOL were worked out in 1959-1960 by a committee of the conformance on Data System Language as a joint
effort.
C. BASIC: - BASIC Stands for Beginners All-Purpose Symbolic Instruction Code. It was developed by Prof. John Keenly &
Thomas KurtzIn 1964 at Darmouth College in the United States. This language has few grammatical rules, understandable for
all, need no complex programming techniques, need few hour concentrated study to know this language. Any person having
basic computer knowledge can learn and write “BASIC” programming Language. This language is popular in Micro Computer
users.
D. PASCAL: - Named after the French mathematician BLAISE PASCAL this language was first introduced in the year 1971 by
Professor Niklaus Wirth of the Federal Institute of Technology in Zurich Switzerland. His aim was to develop a computer
language in structured programming. Thus, PASCAL was the first language to fully embed in an organized way concept of
structured programming. The language is relatively easy to learn and it allows programmers to structure the programming
problems.