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."
Yeah, but we wrote the script that spidered, parsed and combined all these results in Perl...
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.
Seriously, this is the dumbest most "hey lets try to generate views by ranting comments" stupid bullshit I've seen in ages. That is taking into account the completely unrelated US politics bullshit that has been barfed out of the firehose these days.
Popularity of a language is immaterial to the usefulness of a language, to the creation of solutions with whatever language, and certainly will never have a final answer.
What the sincere fuck Slashdot.
Ice Cream has no bones.
As you can C there is only one Programming Language to rule them all :)
I'm amazed that computers still can not simply take commands spoken by the average speaker of the nearly universal language "English" and perform those instructions to the letter. Curly braces, tabs, spaces, none of that should matter.
Time is what keeps everything from happening all at once.
There are so many language similarities it doesn't matter. So many have copied/'borrowed' features from other languages. You don't create a new car by adding ++ or # to the name 'Ford'.
I drive a
Ford++
Ford#
The author says you should learn multiple languages, which I think is correct. The "popularity" question is really just a way to figure out which languages it's most important to brush up on if/when you're looking for your next job.
And there's really no surprise there. The "C family of languages," and also Python, is a pretty good start.
Pascal.
If you are not some autistic savant and want to earn a decent living with plenty of work opportunities, learn PHP and an accompanying framework and you will be sweet!
https://twitter.com/SlimeGirlfriend/status/780107318650347520
The language du jour can be the most popular topic in any given year. What really matters is how effective a language is for solving a problem and how easy it is to modify when you're solution has bugs.
Anons need not reply. Questions end with a question mark.
Clickbait question - which programming language is the most popular - meaning which is used the most, or which is adored by more people? Never mind, the summary then ignores the issue of popularity altogether, and turns the question into which language is most important to study. Being important to study may have no relationship to popularity, or should we all study Pokemon Go? Amazing. Did the poster first learn the language named 'English'?
"The top cluster contains Java, C, Python, and C++. Without a doubt, you should attain familiarity with these four languages."
I make quite a nice salary, and feel quite comfortable I will continue to without using any of those languages.
Between C#, JavaScript, R, and SQL, my plate and bank account are full and will continue to be so.
I don't think I could step back into the stone-age IDE's and features of Java, Python, and C++ without suffering withdrawal symptoms from missing C#/.NET async language features and API's anyway.
Indeed. The "money" languages are Php, C-sharp, and Java, for good or bad.
I'm curious why the intro called Php "tied to a specific programming platform". I'd like clarification on that.
Table-ized A.I.
Guess that means I will ALWAYS have a job being a master C, C++, PHP and Assembly programmer. :)
I might ask him for advice if I wanted to become a tech writer - but why would I particularly care about his opinion regarding what language(s) I should learn or use?
Heck, where I work old stodgy perl is the language of choice. I'm glad I learned it.
#DeleteChrome
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.
> the number of job listings
> the number of tutorials
So, you rate the popularity of languages by the number of empty desks (job listings) where no one is writing code and by the number of accesses by people who don't know the language (tutorials).
"C" is the final answer, that's what is in common with most of those languages.
Yes, we moan and groan and point out flaws in the methodologies, cite counter-examples etc. It applies to both the topic of this thread, "Which language is most popular?" and also the similar question, "Which language is best?" But the investigations will not go away because people really, really, really want to know. Programmers starting out want to know so they can find good jobs. Corporations want to know what language to use to build up their own particular software edifice. And finally, computer scientists want to know because they're scientists (Yes, they really are, some of them anyway.) And it piques their scientific curiosity and finding a way to determine the answers is a challenge, and they want to be able to design better languages.
In theory, theory and practice are the same; in practice they're different. (Yogi Berra & A. Einstein)
People who primarily program in C are probably not writing the same kinds of programs that people who program in PHP, Java or C# are making. C people are writing for performance, compactness, an embedded system or for an OS. PHP people are probably mostly web services type people. C# makes it very easy to put together something to stick in front of someone's face. For example I recently put together a GUI front end in C# that makes calls to a REST based API on a web based management tool, because it was hosted off site, slow and required a lot of navigation to get what you wanted. The clicking, and wait 10 to 15 seconds then click again was replaced by a series of combo boxes in a windows form so that you could select what you wanted to do, type in a parameter that gets input validated before the web call is made and hit submit. Things that were on separate web pages were all front and center. Of course Java is for portability, serverlets, and Android applications. If you know Java, you can pick up C# and vice versa. I've converted simple applications C# to Java and simple Java to C# by pasting the Java code into visual studio as-is (or the C# code into Netbeans as-is) and started doing find and replace for most of the obvious stuff. Hit compile and see what error came up, ok need to replace "string" with "String", Console.Write with System.Out.Print. Replace a TryParse with a parse and a Try/Catch. In the end they start to look more and more alike. If your IDE is a fairly helpful kind, it will auto-fix silly things like capitalization along the way. Heck I love how easy it is to decompile C# and Java so I can see how other people do stuff when it's a closed source application.
Tools in a box. It's the compyootah nerds who will never be popular. :)
Yes, these idiotic posts get lots of responses... But do you really want to be the next Gawker?
For any young programmers out there, forget these stupid polls. Instead, take a look at job postings on craigslist, indeed, etc. to see what your local market demands. This post, for instance, excludes c# which is a very marketable language. Ditto w/ SQL.
I like the mental masturbation like this. Sometimes there are quite interesting posts even and the subject is perfect for a site for geeks. Let the fight of geeks commence and better troll win!
Because:
A) It was created by the 1% to make sure the 1% can hack your computer and uncover your conspiracy to vote for someone not approved by the 1%.
B) It has now underflow, overflow or range checks. Good for Virus writers.
C) It has no built-in array bounds checks. Good for Virus writers.
D) Pointers can easily be invalid or point to freed memory. Good for Virus writers.
Even if the new language turns out to be a dud it's still a good exercise since it demonstrates to an employer (and to yourself) that you are motivated, can adapt and are capable of learning new skills.
My best advice to all of you engineers in the Class of 1890 is to bet your careers on coal-powered steam. Yes, we hear talk of internal-combustion this and electric-power that, but they are all just expensive novelties. Coal is efficient, it provides for many jobs among the lower classes in the mining industry, and is also unwasteful in that most of it literally disappears into the sky, far away from the refined mouths of gentlemen like yourselves.
Besides, the electric power proposals proposed rely on coal-powered steam, so why not just cut out the inefficient middle-man?
All of the great engines of our industry today are powered by coal-powered steam. Would you have us return to the days of the wind-mill or water-wheel? I think not.
Believe me, young engineer, you will never want for a well-paying career if you just stick with coal-powered steam.
sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
In other news, space is the the final frontier. And tab is eight spaces.
Programming is not just an intellectual exercise. You have to actually make stuff.
Shit.
>Java, C++, C, C#, and even Objective-C are all C-based languages.
Java and C# are LISP-based, not C-based (even the creators of Java said so). What makes you say they are C-based?
Saying Objective-C is a C based language is like saying my arsehole is part of my tits. Just making small talk. :)
How can anybody in their right mind maintain that Java is C-based? The only thing that is relatively C-like in Java is the syntax, but the virtual machine and object models are so far away that it isn't even funny. Welcome to the superficial world.
They survey shouldn't ask what language is used by most people, but the earnings (wages) of each language. Rise a stone and a tone of people will code java (=low wages), if fewer people use a language, I'm guessing it'll be better to learn it so you get better paid.
A serious mistake, indeed, if you put an automatic or manual transmission on a modern freight locomotive as they typically operate with fixed gear ratios. Most modern locos are diesel electric and speed control is accomplished by controlling current and switching motor coils between parallel and serial configurations.
Of course this is a hardware problem and not a software problem. Besides, from the programmer's point of view there may be a virtual loco machine that would appear to the programmer as a set of gears...
You do realize that you can program with C# very effectively without Visual Studio or Nuget. Also, many will argue that Java is still missing "a lot of the features" that have yet to be added to newer versions of the language. All languages have this problem, depending on what "a lot of the features" actually refers to. (Do you write speeches for Trump?) Go home and take your parochial Java-centric views with you.
... one should not confuse "popular" with "much-used" or "in demand". Often, one programs in a language because it is required (legacy, sunk cost decision, etc.), but it is not a popular choice.
Free, as in your money being freed from the confines of your account.
Anyone who's been in the job market should know that C and C++ are not highly sought after in job postings. C and C++ are very common in academia and often the first language a student will learn. So I think Google searches and SO posts are heavily skewed by students, which diminishes the quality of the conclusion. In any case the language you learn in school is not that important to your career. The job you end up with will expect you to learn their stack which will almost never involve C and rarely involve C++. But I'd rather take someone out of school who is good at C than someone who only knows Java because someone who gets out of school with strong C skills will usually have a good understanding of Unix and OS fundamentals.
Everything else is just a way to translate design into a language a compiler can translate into machine language.
Curious to see if this gets voted up or down.
"So learning how to learn languages is as important as learning a language -- and the best way to do that is to learn more than one."
You mean how to program, i.e., programming fundamentals, the stuff they teach in computer science.
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.
There is, as yet, insufficient data for a meaningful answer.
It transpiles into JavaScript, just like every other language out there.
This is like the song Popular by Nada Surf.
"Being attractive is the most important thing there is
If you want to be the biggest fish in your pond
You have to be as attractive as possible
Make sure your hair is spotless and clean"
- Nada Surf - Popular
So which language is the most attractive?! ;) I might just have to dump them all at least once. ;)
"Without a doubt, you should attain familiarity with these four languages."
Why should you, when two of them, Java and Python, are toy languages used by inferior programmers?
From my own point of view it's about what job your doing at the time
A lot of devs take they're favored language and say it's the bee's knees regardless, so don't often provide an objective view
Device Drivers
Ideally you want maximum speed and the least amount of code as it's likley the routines within Drivers
will be called lots and lots of times by applications further up the chain
Usually **C** is the favored choice for this
Desktop / Window Managers
Again your facing a lot of code thats going to be called repeatedly lots of times
but there's going to be a lot more complexity involved here
So ideally you want something as close to **C** as possible but with object orientations with Class's etc, i.e. **C++**
Desktop Applications .Net but it's libraries have become a mess .Net Core has the ability to compile down to native code, and is more feature rich
This is one of the two that most people will write for usually
Linux tends to favor **C++ or Java**, Windows tends to favor managed **.Net** Applications
I see Java being more of a forerunner of
The latest
meaning you get a whole bunch of syntactic sugar you simply don't get with other languages (see Reactive Extensions or Entity Framework)
More features / easier to use = less time to get it to work, less code, easier to read, quicker to fix
Website Applications .Net (specifically .Net Core) jumping ahead
This is the second of the two that most people will write for
Again the number of options available is massive, but personally I see
It's more feature rich, which means businesses will need less work time to implement a given feature
and it's more type safe (vs PHP for example) meaning less likley to have problems with hacks or leaks
Administrative Scripts
A lot of this depends on the environment your using, Linux for example has Bash scripts Ruby etc
Windows has Powershell
**Python** is my favorite here as it's cross compatible and easy to debug with Visual Studio or PyCharm, easy to read and has object orientation built in with a ton of libs
but I bet that most of the code I write is in posix sh, bash or perl
Perl, yeah. I like it a lot too.
But sometimes I need to be able not only to write, but also read what I've written.
To determine what a piece of code actually does.
Or if it was simply my cat walking over the keyboard.
Or it it was my cat that successfully patched a mission critical Perl-script by randomly walking across my keyboard...
~~~
"Sufficiently advanced satire is indistinguishable from reality." - [Tips: 1DrYakQDKCQ6y52z6QbnkxHXAocMZJE61o ]
Fourteen different ways to determine language popularity weren't enough -- we need a Fifteenth to Rule Them All.
It's an awful lot of puff about assembly for a topic about high level languages. Great to see the slashdot moderators doing their jobs.
To get back on topic, humans seem to think in and prefer imperative languages despite claims to the contrary. They're simple. Of course that relative to our education systems. I would say the dominance of the English language is a factor. We say apples and oranges, as opposed to 'apples oranges and' which would favor functional languages. Imperative languages just suit people better and seem to go less against the grain. Hipsters live to go against the grain and so functional languages always have some traction.
Give me something comparable for Python and I'll be done with Perl for good.
Anaconda doesn't quite give me the same communitarian, open sourcey feeling.
How good political posters are at what they do.
Swift in the top 10? Good lord.
And Java is a C based language? You might as well say it is a Fortran based language.
:T:R:A:N:S:
D language for me. I also like Euphoria, Forth, and LisP.
The language you write in most is the most popular language to you.
If you work in Java, C#, or C++, you will have plenty of jobs available. If you know two of them and have descent coding skills you will be head hunted constantly.
Knowing multiple languages makes you better.
English is my first language, but I learned Spanish as my second language. I didn't fully understand many of the grammar and other language concepts in English until I learned Spanish. Learning Spanish helped my English more than the study of English did.
Likewise, I didn't fully understand delegates and events in C# until I really started coding in JavaScript, a language that is extremely callback heavy, so much so that JavaScript can lead one to call back hell. Each language takes advantage of different features and logic and do so in different ways. Seeing how two different language implement the same feature actually helps you better understand the concept, not just use the code without fully understanding it.
So which language is popular doesn't matter. If you know two languages or more well, and can solve problems, you can probably be successful in any language.
For rapid development in Business Apps environments, I recommend C#.
I first learned in Java because Java is the most taught language in schools. Newbies, like college students, do the most searching on the web. That sways the stats to make Java look way more popular than C#. However, multiple checks for available jobs have shown C# to have as many or more jobs that Java. Also, the # character just isn't handled by everything as well as it should be and makes C# stats inaccurate. The # character causes a lot of C# stats to be lost and/or not properly counted.
IDE: Visual Studio is so far beyond other IDEs, nothing else even half as good. Maybe not even 1/3 as good. The free version of Visual Studio takes away any issues that used to exist, such as it being too expensive. .NET Core and the open source of .NET Core is creating a lot of buzz.
Language: C# has a lot of features and is fast to code in.
Mobile: With C# (using the now free Xamarin library), one can write mobile Apps for iOS, Android, and Windows. C# provides the best native cross platform development experience for mobile apps out there.
Web: Whether you do WCF or WebAPI or MVC, you have some great options for coding the backend and frontend in C#. Though you can't completely get away from JavaScript for front end.
Verbosity: I write less code in C# to do the same things in Java and C#.
Buzz:
Oracle is not pushing Java forward like it needs to be pushed. If Android hadn't based it's primary language on Java, Java would be following Open Office into its slow demise.
I think it is the best to check actual trends in coding industry, and you'll have the best insights if you visit some online community about coding, or check number of posts/projects done in particular programming language. My advice is to use this page : https://www.livecoding.tv/learn/ and pick your favorite between most popular languages (with most projects & money). Good luck and let the force be with you!
So where is Clarion?
http://softvelocity.com/
Used all over the world, but only by people that know things... 8-)
Am I the only one to think the real sensation here is R conquering the top 10?
I am sorry who uses Python for anything serious!?
Martley, Near Worcester UK.
is English.
If you thinking to study on website developing at Delhi location then for that you should be join PHP classes in Delhi . because Aptron Delhi is one of the best options. now you can click here on our website . http://aptrondelhi.in/best-php-training-in-delhi.html.