Top VPS Hosting Provider

Welcome to the myhosting.com Forums.
+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Stoddard is offline Master Member
    Join Date
    May 2010
    Posts
    559

    Default interpreted languages

    How exactly are interpreted computer programming languages different from other languages? They sound cool, but also complicated to set up. I assume they're for advanced programmers.

  2. #2
    suwunk is offline Super Moderator
    Join Date
    Aug 2010
    Posts
    1,096

    Default

    Programming languages generally fall into one of two categories: Compiled or Interpreted. With a compiled language, code you enter is reduced to a set of machine-specific instructions before being saved as an executable file. With interpreted languages, the code is saved in the same format that you entered. Compiled programs generally run faster than interpreted ones because interpreted programs must be reduced to machine instructions at runtime. However, with an interpreted language you can do things that cannot be done in a compiled language. For example, interpreted programs can modify themselves by adding or changing functions at runtime. It is also usually easier to develop applications in an interpreted environment because you don't have to recompile your application each time you want to test a small section.
    Details: Compiled vs. Interpreted Languages


 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts