Skip to main content

Types of programming languages | Software

Hi,

Lets get going further in to the basics of computers.

For those of you who are new to this blog, I recommend you to go through part - 1 of the basics before going ahead with this post.

Here is the link to part-1:

https://techspireme.blogspot.in/2018/04/basics-of-computers.html

We have already read from part 1 that Software is a set of applications.

Software is basically of two types:

1. System software: software required to start up the system i.e the Operating System software (by booting - a process named Boot Strap Loader loads the operating system from the Hard disk drive to the working memory RAM)

2. Application software: Software designed for a specific purpose that is a collection of programs. Application software always runs on the top of system software.
Examples of Application software are: word processors like notepad, wordpad
A suite of applications like MS Office
Media players (VLC etc) and many more.

System software is the base on which application software functions.

To develop software applications, we create, compile and execute programs (to perform a particular task). To create programs, we use programming languages.

Programming language is a language specific to computers that is used to create programs. It is a set of specifications and rules/syntax to create code that is understandable and process-able by the computer.

There are three types of programming languages.
1. Low Level Programming language: here the instructions and data are provided in low level i.e as a string of 0's and 1's.
Advantages: Fast execution as instructions are directly understandable by the computer/processor and can directly work with the system hardware.
Disadvantages: Hard to code


2. Middle Level Programming Language: here the task is a bit simplified for the coder. The instructions are provided with a set of keywords or mnemonics that perform a specific operation.
Example: STO A (to store value)
STO B
ADD A,B (to add A,B) etc.
Middle level programming is usually used to program microprocessors like the 8086 micro processor.
C language is a middle level language because it has both low level features like pointers and syntax that is English like (high level language feature).

3. High level Programming Language: the instructions here are written in a very user friendly manner in English like language.
Ex. Java, C++

These are the Types of programming languages.


As you can infer from the above diagram, as we come down from low level to high level, the complexity of programming decreases, also the performance becomes low but from programmer point of view, it gets more user friendly and comparitively simpler to code.

Some interesting facts:

The first ever computer programmer (1843) was a woman named Ada Lovelace.

Plankankul, a programming language for engineering purposes was the first high level programming language created between 1942-1945 by Konrad Zuse.

In 1951 Corrado Bohm created the first high level language with an associated compiler for his Ph.D thesis.

In 1956, FORTRAN (FORmula TRANslation) was the first ever commercially available language.

Simula is the first object oriented programming language. It was designed for simulations.






Comments

Post a Comment

Popular posts from this blog

DBMS CHECKLIST

DBMS Types Data Independence Three schema architecture DBMS users Dr.E.F.Codd’s rules for RDBMS (0-12) ER Model SQL DDL – CREATE, ALTER, DROP, TRUNCATE, RENAME DML – INSERT, UPDATE, DELETE DCL – GRANT, REVOKE, CREATE USER, DROP USER TCL – COMMIT, ROLLBACK, SAVEPOINT DATATYPES, OPERATORS(ARITHMETIC,RELATIONAL) CONSTRAINTS (PRIMARY KEY, FOREIGN KEY, NOT NULL, UNIQUE, CHECK) WHERE CLAUSE ORDER BY ASC | DESC DISTINCT GROUP BY - HAVING FUNCTIONS 1.      SINGLE ROW FUNCTIONS(UPPER,LOWER,SUBSTR,INITCAP,LENGTH,TRIM,LTRIM,RTRIM) 2.      AGGREGATE FUNCTIONS(MIN,MAX,SUM,AVG,COUNT) 3.      NUMBER FUNCTIONS(ROUND,CEIL,FLOOR,ABS,MOD,SQRT,POWER) 4.      DATE FUNCTIONS(TO_DATE,ADD_MONTHS,TO_CHAR,NEXTDAY,MONTHS_BETWEEN, SYSDATE) 5.      NULL FUNCTIONS(NVL,NVL2,COALESCE) OPERATORS IN NOT IN BETWEEN AND IS NULL LIKE, NOT LIKE PATTERN MATCHING IS ...

Anomalies in Database Manipulation

  Normalization in database design is a process used to organize data to reduce redundancy and improve data integrity. It involves dividing a database into multiple tables and define relationship between them. There are several types of anomalies that can arise when a database is not normalized. The three main types of normalization anomalies. 1.       Insertion anomaly An insertion anomaly normally occurs when you can’t insert data into the database without the presence of other data.   Students StudId StuName Course Instructor 1 Jack Math Prof. Raghu 2 Jim Science Prof. Radha 3 Harry Computer Science Prof. Venkat 4 Henry Digital Marketing Prof. Jasmine 5 Rose Finance Ms. Smith   The colleg...

Everything about computers

Hi, I am quite excited to start the technical part of my blog! I hope so are you! Let's start with the Abc of computers that we all find a bit hard to put in to words. These are my own definitions made really simple and easy to understand! Computer:   An electronic device that computes, stores, processes , manipulates and displays the data. Coined from the term "compute", means to calculate. Facts:  First ever computer was used for mathematical calculations. Founder: Charles Babbage - The Father of computers - invented the first ever mechanical computer called "Babbage's Analytical Engine"! Features of a Computer / Advantages of computer over a calculator: Speed, Accuracy, Storage, Multi tasking, Diligence (and many more). A computer comprises of Software and Hardware (all the physical - internal or external components/peripherals that are connected to or a part of computer ex. Keyboard, Mouse, Cabinet, Joystick, USB - pen drive etc. that we c...