InterviewSolution
| 1. |
Name the program that allows high level language to interrelate with a hardware device. |
|
Answer» You mean a program that converts high level language to machine level language? It’s conventionally called a “compiler”. But you can’t reliably go in the opposite direction: if you know that some piece of software is called a “compiler”, you can’t be sure that it translates a high-level language into machine language. It might translate it into another high-level language, into assembly language, or into machine language for a pseudo-machine rather than a physical one. A translator from one source language into another should properly be called a “pre-processor”, but that doesn’t always happen. your answer is compiler |
|