Difference between complier and interpreter
CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Sanskar Garg 7 years, 6 months ago
- 1 answers
Related Questions
Posted by T Kumaran 11 months, 1 week ago
- 0 answers
Posted by Samyak Jain 1 year, 1 month ago
- 0 answers
Posted by Jaspreet Sethi 10 months, 3 weeks ago
- 0 answers
Posted by Anshika Maurya 9 months, 3 weeks ago
- 0 answers
Posted by Gopall Mahato 10 months ago
- 0 answers
Posted by Gowri Menon .Menon 10 months, 1 week ago
- 0 answers
Posted by Abi S 1 year ago
- 0 answers
Posted by Account Deleted 1 year, 2 months ago
- 1 answers
Posted by Anchal Ratna 1 year, 2 months ago
- 1 answers
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Varun Banda 7 years, 6 months ago
The difference between an interpreter and a compiler is given below:
Interpreter / Compiler
1)Translates program one statement at a time. / Scans the entire program and translates it as a whole into machine code.
2)It takes less amount of time to analyze the source code but the overall execution time is slower. / It takes large amount of time to analyze the source code but the overall execution time is comparatively faster.
3)No intermediate object code is generated, hence are memory efficient. / Generates intermediate object code which further requires linking, hence requires more memory.
4)Continues translating the program until the first error is met, in which case it stops. Hence debugging is easy ./ It generates the error message only after scanning the whole program. Hence debugging is comparatively hard.
5) Programming language like Python, Ruby use interpreters. / Programming language like C, C++ use compilers.
0Thank You