150k views
4 votes
Are scripted languages easier or more difficult to port than programming languages? Why?

1 Answer

1 vote

Answer:

Scripting languages are easier to port to various platforms due to the compiling and interpreting tools it uses to read the source code.

Step-by-step explanation:

Programming languages are used to create source codes for various applications from web programming to mobile application implementation.

A programming language can be a scripting language, only with the required tools like a compiler or an interpreter. For example, C source codes are compiled to executable scripting file with the GCC compiler and python codes are interpreted with the cpython interpreter.

User Sudhakar
by
4.8k points