Computer Science, asked by arjunkumar27, 11 months ago

what are high low and Middle level language explain with the example

Answers

Answered by manishkr620520
15
High-Level. ... They are essentiallymid-level languages which just take the concepts of abstraction and high-level constructs to the extreme. For example, Java is mostly object-oriented, but it still relies on primitives which are represented directly in memory. Ruby on the other hand is completely object-oriented.
Answered by shilpa1529
0

Programming language can be divided into three categories based on the levels of abstraction:

# Low-level Language

The low-level language is a programming language that provides no abstraction from the hardware and is represented by machine instructions in 0 and 1 forms.

for example:-

●Machine level Language

●⁠Assembly level Language

# High-level Language

A high-level language is a programming language that allows a programmer to create programs that are not dependent on the type of computer they are running on.

High-level languages are distinguished from machine- level languages by their resemblance to human languages.

When writing a program in a high-level language, the logic of the problem must be given complete attention.

To convert a high-level language to a low-level language,

a compiler is necessary.

for examples :-

• COBOL used for business application

• FORTRAN used for Engineering & Scientific Application ・PASCAL used for General use and as a teaching tool

• C & C++ used for General purposes and it is very popular

・PROLOG used for Artificial intelligence

・JAVA used for General purpose programming

・NET used for General or web applications

# Medium Level Language

Programming languages with features of both Low Level and High-Level programming languages are referred to as "Middle Level" programming languages.

• Medium-level language is also known as the

intermediate-level programming language.

・There is no such thing as a programming language category.

・ Medium level language is a type of programming language that has features of both low-level and high- level programming languages.

for examples :-

C, C++, and JAVA programming languages are the best example of Middle-Level Programming languages since they combine low-level and high-level characteristics.

Similar questions