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, 2 months ago
- 1 answers
Related Questions
Posted by Jaspreet Sethi 6 months, 3 weeks ago
- 0 answers
Posted by Gowri Menon .Menon 6 months, 1 week ago
- 0 answers
Posted by T Kumaran 7 months, 1 week ago
- 0 answers
Posted by Account Deleted 10 months, 3 weeks ago
- 1 answers
Posted by Anshika Maurya 5 months, 3 weeks ago
- 0 answers
Posted by Anchal Ratna 10 months, 3 weeks ago
- 1 answers
Posted by Gopall Mahato 6 months ago
- 0 answers
Posted by Abi S 8 months, 3 weeks ago
- 0 answers
Posted by Samyak Jain 9 months ago
- 0 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, 2 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