answersLogoWhite

0


Best Answer

java is simple because the developers of java omitted the difficult concepts of pointers which is used in c & c++

and another reason is that the developers wanted to implement this programming language in electronic devices,which have less memory

User Avatar

Wiki User

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

Wiki User

14y ago

Yea, JAVA is extremely easy to understand.

But, one must take it as a subject if he or she is very good in mathematics.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

Because it is.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

that's your problem

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why java is considered as a low level language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

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.


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.


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.


Which language is source program written?

The Java language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities

Related questions

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.


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


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.


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.


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.


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.


Which language is source program written?

The Java language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities


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.


Examples of programming language?

There are hudreds of Programming languages out there.Examples: C++, GWbasic, C#, C++, HTML , Ruby etc.They're further categorized as "Low Level language" and "High Level Language".Low level languages are those languages which are closer to the binary language or in another words machine language. These are difficult for us to learn but it's easy for machine to execute quickly.Example of a low level language is assembly language.High level languages are those languages which are close to human language/natural language and are easy for us to learn.Examples of high level language are Python, Ruby, C++ , Java etc.


How to convert low level language into high level language?

lang are convert into low level language by


What is a complier in computer language?

A compiler is a program that translates a programming language (like c++, java, pascal, php etc...) to a language that computers can "understand" (i.e. "1001010110101010...")


What are the example of low level programing language?

The "machine language" and "assembly language" for each CPU architecture are the lowest-level programming languages. The "Forth language" and the "C programming language" are perhaps the most popular non-CPU-specific low-level programming languages. They were once considered high-level programming languages, and certainly they are at a higher level than assembly language, but now they are considered low-level programming languages when compared to the much higher-level languages available today (Python, Java, C++, etc). Low-level programming languages provide little or no abstraction from the CPU's instruction set architecture; typically they interact with the hardware directly.