Which Programming Language Is Most Popular - The Final Answer? (zdnet.com)
An anonymous Slashdot reader writes: Following a common technique among political pollsters, a technology columnist combined the results from various measures of programming language popularity for a more definitive answer about the most important languages to study. He used IEEE Spectrum's interactive list of the top programming languages, which lets you adjust the weight given to the number of job listings and number or open source projects, then combined it with the TIOBE Index (which is based on search engine results), and the PYPL Index, which checks the number of tutorials for each programming language on Google.
The results? "The top cluster contains Java, C, Python, and C++. Without a doubt, you should attain familiarity with these four languages." He points out they're not tied to a specific programming platform, unlike languages in the second cluster -- JavaScript, C#, PHP, and Swift -- while the last two languages in the top 10 were Objective-C and R. "The C-family of languages still dominates. Java, C++, C, C#, and even Objective-C are all C-based languages. If you're only going to learn one language, you should pick one of those." But his ultimate advice is to "learn multiple languages and multiple frameworks... Programming is not just an intellectual exercise. You have to actually make stuff."
The results? "The top cluster contains Java, C, Python, and C++. Without a doubt, you should attain familiarity with these four languages." He points out they're not tied to a specific programming platform, unlike languages in the second cluster -- JavaScript, C#, PHP, and Swift -- while the last two languages in the top 10 were Objective-C and R. "The C-family of languages still dominates. Java, C++, C, C#, and even Objective-C are all C-based languages. If you're only going to learn one language, you should pick one of those." But his ultimate advice is to "learn multiple languages and multiple frameworks... Programming is not just an intellectual exercise. You have to actually make stuff."
Seriously Miss Universe is only once a year. Yet I'm seeing "which is the most popular language" every month or so here. Who gives a shit? Certainly not your CPU. It all gets compiled down to assembly anyway. THAT is the most popular language, even if few humans code in it nowadays all computers read it.
Seven puppies were harmed during the making of this post.
As you can C there is only one Programming Language to rule them all :)
English can, and should be, logically structured. Is its complexity that is holding back from the use by the masses?
English can be precise if you choose your words carefully. But you will soon find that you are saying or typing WAY more than if you used a real programming language to do the same thing.
Would you rather type: for (int i = 0; i < 10; ++i) {
Or: Using an integer with at least 32 bit precision initialized to zero, test if the integer is less than 10, and if so perform the specified task, and then increment the integer, and repeat the test.
Which would you rather debug?
Do you think mathematicians should also eschew mathematical notation?
Do you think chemists should describe molecules in English, rather than using formula or diagrams?
Man I am falling behind... I have never heard of the Which programming language and here we are told that it is the most popular. And I thought I was a software professional. BTW just so I have straight is it WHICH or Which or just which - I don't want to embarrass myself at the next meeting when I propose we do the next project in Which.
If they include javascript, why not perl? I find it hard to believe that there are more R programmers than perl scripters.
The only thing worse than a Democrat is a Republican.
I would rather use the language that enables the most users to instruct their computers on what they want done. Stupid battles over curly braces and punctuation does nothing to further this goal. Humans have understood how to interpret human language, it is high time we taught our machines to do the same.
You completely dodged his point. Seriously, go to a mathematician sometime, tell him to write everything in pure English. None of this quadratic stuff, we only live for "x equals minus b plus or minus the square root of b squared plus 4 times the value of a times c divided by the value of 2 times the value of a". Because that's much more accessible and readable than some scratch marks, clearly.
Next up will be the elimination of slang, yes?
"Set a man a fire, he'll be warm for the rest of the night. Set a man afire, he'll be warm for the rest of his life."
Of course popularity matters.
1. More popular languages you can find less expensive developers for...(or more total developer talent for a given amount of money)
2. More popular languages are likely to have stackoverflow posts with examples for every single basic task and explanations about what errors mean. (before you gloat about how you don't need help from SO, have you ever faced goddamn C++ linker errors? Might as well have an Ouija board out to find out what the mistake is)
3. More popular languages work on more computers and are likely to continue to work in the future
4. More popular languages tend to be faster. Usually a shit ton faster. Java has gone from a bloated mess to a bloated mess that is often within spitting distance of C on performance shootouts. That's from the popularity spurring further development. C is almost always king of the hill and nothing is faster. Python? Rust? Whatever n00bs. Those languages may be nice to write complex code that only gets run occasionally but if you need high end performance they aren't going to cut it.
It should not take a PhD to ask a machine to sum 1 + 1.
(Presuming you meant "calculate 1 + 1" or "add1 and 1")
It doesn't take a PhD. It doesn't take any education at all. Most kids these days know how to do that in multiple languages.
But the problem is that the English or any other spoken language isn't formal.
In the above calculation, what did you mean by 1? An abstract integer? A cardinal number? A measure between 0.5 and 1.5?
And what is it supposed to do with the result of the above calculation? You didn't specify, so did you want it to discard the result? Execute it? Present it to you? How, exactly? Visual, audible, or tactile? As binary? With uncertainties like 2 +/- 1?
And what should it do after that? Stop? Halt? Redo? Run NOP cycles until the cows come home? You didn't say.
You have to be explicit and not ambiguous when you tell a computer to do something. We humans try to guess what you mean from the context, but a computer doesn't have that luxury. You have to provide the context. Doing so is much easier in a programming language than in English. Programming languages have a well-defined context, and you know what an instruction sequence will do. The languages are designed to avoid ambiguity.
With human languages, you don't. You have to guess from context.
If your wife says "lay down on the bed", you don't cut open a pillow and start to lay little feathers on the bed. You second-guess her and presume she meant "lie on the bed for an unspecified period of time".
And if you say "make me one with everything", you expect different results depending on whether you address a hot dog seller or a zen master.
Context is everything. And the computer doesn't have your context unless you first feed it to it.
Don't forget shell scripts.
I do development in C and many other languages, but I bet that most of the code I write is in posix sh, bash or perl.
Some quite advanced systems are written as scripts. When timing is not essential, it can be a rational choice. And even then, the majority of a system can be written as scripts, with only the timing-critical components being compiled code.
It will be the language least suited to your task, but insisted upon by your managers.
When Fascism comes to America, it will call itself Anti-Fascism, and tell you to give up your guns.