Click here to Skip to main content
15,896,344 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Can someone help me and explain what is a portable language (interpreted language) ? like : python and Java

What I have tried:

I've read a lot about it , but cannot completely understand what is an interpreter / portable language
what is an IDE ? what is its use?
p.s : i only know c++ language ,and have started python
Posted
Updated 24-Jan-17 14:44pm

I get the feeling that definitions vary. My definition of an interpreted language is one that is translated into an intermediate type of code. This intermediate code is not machine code and can not be 'directly' executed. The intermediate code is interpreted during execution. A compiled language is one that is translated into machine code which can be directly executed. There is no final translation stage during execution.
 
Share this answer
 
Comments
Member.R 25-Jan-17 1:36am    
thank you ^_^ that helped me
An interpreted language is a programming language that does not need to be compiled in order to be executed. Python is this type of language, however python and perhaps others can be compiled into byte code.

The Interpreter will parse the lines, executing the correct functions.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900