Posts Tagged programming languages

What is are high level and low level languages?

High Level Language

High Level Language is a simple English language with set of Instruction and which is readable by human.

Code or Program written in such a way that is easily readable like a book.

For example: string strName = “My Name is Dot Net”;

There are certain rules to follow while writing a code but yes that is very easy to understand as compare to binary code

Now High Level Language is so simple that a programmer or a coder can develop standalone applications, web programs and other GUI interfaces very easily

High Level Language is divided into different forms like (C#, C, C++, VB, VB.Net, Python, Java, Perl, Ruby) etc. Among these languages you can use any one language at a time for a particular application.

High Level Language is designed to suit the requirements of a programmer

Compare to Low Level Language High Level Language is easier to understand, Learn and write.

 

Low Level Language

Low Level Language is a Machine Language or in simple words it’s a pure binary language i.e. 101111

For Human being is very difficult to understand these binary languages and these languages are only meant for specific computer architecture or hardware only representation is usually defined by the hardware manufacturer.

Low-level languages are closer to the hardware than are high-level programming languages

Low level language is a language that supports the machine side of the programming and does not provide human side of the programming.

Leave a Comment