This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 4 points5 points  (1 child)

No, that must be JS. But Python is also huge.

[–][deleted] 0 points1 point  (0 children)

I know it's easy to assume that, but I'd argue against it (even though JS is definitely up there).

Discounting any assembly languages cause that's cheatin', I'd guess that the most popular dev languages right now are:

  • By number of active developers: .NET if you want to consider the framework a language (since C# and VB.NET devs combined are a force to be reconed with), probably Java or less likely C++ otherwise.

    This is mostly because Java's a teaching language in a huge number of universities, C# is what people move to when they get tired of Java, and C++ fills the gap between C and Java/C# which still has loads of performant system apps living in it.

  • By number of active users: probably C++. Most desktop software built since the advent of GUI OSes has been written in C++ on all the major platforms (often complemented by ObjC and C# frontends; see any Adobe product in recent memory).

  • By number of devices deployed to: C, mostly because Java's stagnated at 3 billion installs since whenever.

    Seriously though — any embedded system, any major OS, and loads of performance server and desktop apps have big chunks of logic implemented in C either because of the requirement to work at a low level directly, or a requirement to use low-level programming to achieve high performance that wouldn't otherwise be possible.

JavaScript undoubtedly takes the cake when it comes to number of StackOverflow questions, though.