is interpretation really required? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

is interpretation really required?

languages like python are interpreted but isn't compilation is better as code is already compiled and u just have to run it rather than converting code every time and then running it.

24th Jul 2017, 2:33 PM
shobhit
shobhit - avatar
1 Answer
+ 1
interpreted - slower. more high level functions and covenient features, cand run roght away after every change compiled - fasr but usually with less high level features, and can not be run right away, you need to wait fpr it to compile for every little change, which can take hours on large programs overall its less optimal to program interpreted, but for small spftware like a notepad its easier because you can check changes right away and you wrote less code since the language has alotof stuff built in. you need compiled for performance critical apps mostly. where they need to run fast
26th Jul 2017, 11:14 AM
Seckar
Seckar - avatar