Respuesta :
Compiled languages are slightly more advanced than machine languages, but less advanced than high-level languages.
What is Compiled languages?
- A compiled language is a programming language whose performances are typically compilers (translators that develop machine code from reference code), and not interpreters (step-by-step executors of source code, where no pre-runtime translation assumes location).
- Java can be considered both a collector and an interpreted language because its source regulation is first compiled into a binary byte-code. This byte-code runs on the Java Virtual Machine (JVM), which is usually a software-based interpreter.
- A compiled language is a programming language where the reference code is translated into device code and the machine code is stored in a different file. A collected language tends to give the designer more control over hardware aspects like memory administration and CPU usage.
To learn more about compiled language, refer to:
https://brainly.com/question/23838084
#SPJ2