CGI Programming / Scripts Question:
Download Job Interview Questions and Answers PDF
What is the difference between an interpreted language and a compiled language?
Answer:
A compiled language is written and then run through a compiler which checks its syntax and compresses it into a binary executable. Since an interpreted language is not compiled, it must be checked for errors at run-time, which makes it quite a bit slower than a compiled language (like C or Java). Perl is an example of an interpreted language. Remember, though, that just because a language is interpreted does not necessarily mean it is not full-featured, or simplistic. Perl can get very complex and very cryptic, very quickly.
Download CGI Programming Interview Questions And Answers
PDF
Previous Question | Next Question |
Should I use CGI or an API? | What is Difference between CGI and JAVA? |