A compiled language is one where the program, once compiled, is
expressed in the instructions of the target machine. For example, an
addition "+" operation in your source code could be translated
directly to the "ADD" instruction in machine code.

An interpreted language is one where the instructions are not directly
executed by the the target machine, but instead read and executed by
some other program (which normally is written in the language of the
native machine). For example, the same "+" operation would be
recognised by the interpreter at run time, which would then call its
own "add(a,b)" function with the appropriate arguments, which would
then execute the machine code "ADD" instruction.

so,compiled language is often faster than interpreted language.

priyaranjan
software engg
http://code-forum.blogspot.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to