Scripting or programming language? [closed]?

I actually believe the question is a bit misleading. Of course a scripting language is also a programming language. But there are differences: Between Compiled and Interpreted Languages.

Traditionally a language like c is compiled into machine code that can be understood directly by a cpu. A "script language" on the other hand usually is not being compiled into machine code before execution but interpreted using an interpreter. The advantage of an interpreted language usually is that it has a faster development cycle because no compilation is necessary and it is easier to move from one platform to another.E.g.

Python scripts can be executed on windows, linux, mac without changes. The advantage of a compiled language on the other hand is that it executes usually much faster. I used "usually" and "traditionally" very often because there are now technologies that make it much harder to draw the line.E.g.It is possible to compile python code directly into native code and there are also interpreters for c code.

Also "Just In Time" compiler and virtual machines make it harder to draw here black and white. More: en.wikipedia.org/wiki/Interpreted_language Duck-Typed and Strong-Typed Languages Usually script languages are duck-typed which means that a variable can be assigned any type and there is no or only optional checking of types.In compiled languages on the other side like C and C++ every variable is typed and it can and will only hold values of that type. The advantage of a duck-typed language is usually that it requires less physical typing and less code (e.g. Type names can be left of function declarations etc...) and it is easier to write reusable functions.

The advantage of a strong-typed language usually is that it "helps" the programmer finding bugs before running the application.E.g. The compiler would complain about type errors without the need to run the concrete line where the error is happening. Especially in big projects with many contributors this can become an amazing advantage.

More: en.wikipedia.org/wiki/Duck_typing.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions