answersLogoWhite

0


Best Answer

Both compiler and interpreter are the language programs that translates source program into machine code or we can say object code. Both are used to find errors in source program.

User Avatar

Wiki User

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

otieno medrice

Lvl 2
2y ago

Both uses computer systems

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the similarities between compiler and interpreter?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Similarities between compiler interpreter assembler?

Both are use to convert high level languages into machine language


How many model of compiler?

combination of interpreter and compiler.


What is the different between Compiler and Interpreter in C or C plus plus programming?

It is easy to tell: there is no interpreter for C and C++, they are compiled languages.


Who is the best between a compiler and an interpreter?

There are very few languages (e.g. old BASIC variants in hobby computers) that have both interpreter and compiler, so your question hardly makes sense. Simply pick a language, and use it.


What is the difference between interpreter and parser and compiler?

in my personal point of view i would say a parser is more like "one-directional" "automatic" vs. an interpreter, the interpreter has more "intelligence"


Which type of translater is used by GW BASIC either compiler or interpreter?

its an interpreter


How compiler differ form interpreter?

because the compiler convert whole of the sentence once into the machine langauge but the interpreter convert one by one


Which produces faster program execution a compiler or pure interpreter?

A compiled program would execute faster than an interpreter running the same code step by step.


Is there used compiler or interpreter in HTM?

A htm file is interpreted, not compiled. A browser acts as the interpreter.


Why does compiler better than interpreter?

There is no point in comparison.


Which is the host language uses to develop Compiler or interpreter?

You will have to ask the compiler and interpreter writers that question. What I can tell you with certainty, at one time all programs were hand assembled.


State two differences between a compiler and an interpreter?

# An interpreter translates from source code to machine code on-the-fly; a compiler does it all before the program is executed. # Compilers can spend a lot of time on analysis and optimization, allowing for (generally) better performance of code.