Why are some programming languages better for certain types of projects than other programming languages, when they can all essentially do the same thing and they all seem to work the same way?

402 views

Why are some programming languages better for certain types of projects than other programming languages, when they can all essentially do the same thing and they all seem to work the same way?

In: 20

19 Answers

Anonymous 0 Comments

Programming languages don’t work the same way under the hood and generally the more simple a language is to code in the slower it runs as the compiler (the things that translates code to a language the computer can understand has to work harder). This is why for very memory intensive applications it’s much better to use C/C++ over a language like python or Java

You are viewing 1 out of 19 answers, click here to view all answers.