What translates a high level language into machine code?

1 answer

Answer

1040773

2026-08-27 23:40

+ Follow

Java
Java

An interpreter or a compiler. The former translates one line at a time and must be executed within the interpreter. The latter compiles the entire program into a standalone executable. For example, C++ is compiled to machine code but Java is compiled to byte code which is then interpreted by the Java Virtual Machine.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.