answersLogoWhite

0

Is java is high level language?

Updated: 8/20/2019
User Avatar

Wiki User

10y ago

Best Answer

yes, java is high level language because to run it we requires jvm interpreter. In case of c language there is no need to interpret it...

User Avatar

Wiki User

10y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

Yes.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is java is high level language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is java an assembly language?

No. Java is a high level language also known as object oriented programming


Are FORTAIN BASIC high level lenguages?

c++,java are high level language.


Is Java-script a high level programming language?

Yes. The easiest way to categorize a programming language as "high level" is to actually determine whether or not it is a low-level language. The typical definition of a low-level language is one which does not require a compiler or interpreter to run. Basically, a high-level language is one which needs to be turned into a low-level language (bytecode/assembly instructions) before it can execute. Java source code needs to be compiled into Java bytecode so that it can run in the Java Virtual Machine (JVM). The JVM then interprets/compiles the bytecode so that it can run on the host machine. In summary: Java code cannot run directly on a machine, therefore it is not a low-level language. This would put it in the high-level language category.


What are the simalarities of high and low level programming?

high level language; is a computer language that is near to human language. high level programming is a process of programming high level language.Example,c++,java,cobol are one of them. The reverse is true for the low level language.


Is SQL a high level language?

Yes, SQL is a high level language, since it allow us to get result without much going into Assembly level instructions, by using interpreter to change our statements/queries into machine level instructions!.


Is assembly a low level language?

Yes, it's actually about as low level as you can get. An example of a high level langauge would be Java


Why Java is called high level language?

Low level computer languages require the programmer to know the machine code or assembler language for the computer CPU targeted including low-level functions like memory allocation and memory deallocation.A high-level programming language is a programming language with strong abstraction from the details of the computer.The Java programming language is not only a high-level language, but is also machine and platform independent in that the same compiled byte-code can run on different platform and CPUs without recompiling.


Is C is an High Level Language?

c is basically middle level language.assembly level language is the low level language which is the close to computers.C language comes in the category of middle level language with other languages like pascal,fortran.The successor language of C i.e. C++ and Java are high level language. Because they easy to understand by human than C.


Can the processor of a computer system directly execute source programs written in Java?

No. Even using the Java Native Interface, code written in Java is always in a high-level language.


Why c plus plus is not a middle level language?

C++ is a high-level language with low-level features, including memory pointer variables, therefore it is an intermediate-level language. In other words, it is a middle-level language. It cannot be regarded in any other way, because it is not as low-level as assembler, but it is as low-level as C, and can also be as high-level as Java.


Is jvm a compiler?

Basically they do the same: converting from one level of language into another. A compiler converts high level language (programming language like java) into machine-language. That is language a computer understands. An interpreter converts high level language into an intermediate level. When a program is exectuted, that intermediate level is reconverted to machine language.


What is the difference between high level language and low level language?

A programming language that is machine-independent is called a "high-level" language - this includes Java, C++, Python, etc. A programming language that is machine-dependent is called a "low-level" language. For PCs, this usually includes assembly, binary code or some proprietary languages on embedded devices.