As compiled languages tend to result in marginally faster applications,
one might think that compiled languages should always be used instead of
interpreted languages. However, there are many reasons for using
interpreted languages rather than compiled ones. The primary reasons
are that,
- Faster development.
- Easier updating.
- Easier debugging with only a marginal increase in processing time.
- Portable, able to be run without being modified for different computing environments.
In contrast, compiled languages take,
- More time for development.
- More time for update.
- More time for debugging.
- Generally faster to run.
- Difficult to reverse engineer.
No comments:
Post a Comment