{"id":481,"date":"2020-12-22T15:40:18","date_gmt":"2020-12-22T20:40:18","guid":{"rendered":"https:\/\/www.alpharithms.com\/?p=481"},"modified":"2022-06-16T15:24:11","modified_gmt":"2022-06-16T19:24:11","slug":"most-popular-programming-languages","status":"publish","type":"post","link":"https:\/\/www.alpharithms.com\/most-popular-programming-languages-184015\/","title":{"rendered":"Most Popular Programming Languages of 2020"},"content":{"rendered":"

What makes a programming language popular? Is it available libraries, maturity, syntactic sugar? While such qualitative answers may not be easy to answer, one can look at usage data to help describe popularity.<\/p>\n

What better source to confer usage data from than GitHub? Each year, GitHub publishes The State of the Octoverse <\/em><\/a>(SOTO)\u2014a comprehensive analysis of user data. This annual report looks at things like geographics, gender, usage data, and\u00a0tons<\/em> more.<\/p>\n

Most Popular Programming Languages<\/h2>\n

Amidst the SOTO report is a listing of the most popular programming languages\u2014determined by total repository accumulation\u2014measured over the past 6 years (2014-). While there are hundreds of languages out there the top 10 programming languages are always insightful.<\/p>\n

10. Ruby\/Objective-C (tie)<\/h2>\n

\"popular<\/a><\/p>\n

Tied in tenth place are Ruby<\/strong> and Objective C<\/strong>. Ruby, as many know, is a language popularized by its data-science libraries and its web framework Ruby on Rails (a.k.a.\u00a0Rails<\/em>.)<\/p>\n

Objective-C is a thin-wrapper atop the C language, and the primary language used for OSX and iOS development. Objective-C is a superset of the C-language, meaning that any code written in C can be compiled in an Objective-C compiler.<\/p>\n

9. Shell (scripts)<\/h2>\n

\"popular<\/a><\/p>\n

Powershell, Ba$H, batch files\u2014these are the types of code that fall into the\u00a0Shell<\/em> language category. Given the broad binning of the “language”, it’s no surprise usage data puts it firmly within the domain of the most popular languages list.<\/p>\n

Over the years, there have been almost too many variations of “shell” to list. Windows CMD provides command-line interfacing, its Powershell<\/em> provides a more familiar terrain for Linux users, the new Windows 10 Linux Subsystem provides direct access to Born-Again-SHell<\/em> (BASH) interfacing, and OSX users have access to several including tcsh<\/em>, ksh<\/em>, and also BASH.<\/p>\n

8. C Programming Language<\/h2>\n

\"popular<\/a><\/p>\n

The darling of the programming world\u2014the C Language has been around since the early 1970’s. It provides low-level access to hardware, serves general-purpose programming directives, recursion, custom data types, and powers software across nearly ever field where digital information is relevant.<\/p>\n

The C-Programming language is at the core of many other languages such as Perl, C++, Python, PHP, Javascript, Ruby, Rust, and Swift. Without C modern programming languages would not be recognizable. While modern, higher-level languages like Java, C++, and Python are surging in popularity C’s integral role in each anchors it firmly on any list of popular programming languages.<\/p>\n

7. C++<\/h2>\n

\"popular<\/a><\/p>\n

C++ was created as an extension of the C-programming language as a means to offer classes. Since its inception, C++ has evolved considerably and now provides most all modern programming language constructs such as generics and objects while still allowing low-level access to memory.<\/p>\n

C++ is standardized by the ISO with the most recent standard (C++20) having been published in December 2020. C++ is the industry standard for resource-limited systems such as embedded systems, real-time applications, and game engines. It comes with a learning curve but there isn’t much this language can’t do. There’s little wonder as to why it’s popularity remains solid.<\/p>\n

6. PHP<\/h2>\n

\"popular<\/a><\/p>\n

PHP was developed as a web-scripting language to connect server-side processing to client-side (web browser) rendering. The popular web framework WordPress is built using PHP and the enormous ecosystem of themes and plugins it’s produced is undoubtedly a contributor to PHP’s continued popularity.<\/p>\n

PHP originally acronymized\u00a0Personal Home Page<\/em> in the declaration of its intended purpose of supporting website usage. As such, early versions of PHP were not intended to be a full-fledged programming language. Modern PHP remains popular among web applications and has seen considerable performance enhancements in recent releases.<\/p>\n

5. C#<\/h2>\n

\"popular<\/a><\/p>\n

C# was developed by Microsoft in the early 2000s as part of their .NET program. It’s a full-fledged software framework that runs in the Microsoft Common Language Runtime software interface (similar to the Java Virtual Machine). It provides features like generics, object-oriented constructs, and functional programming paradigms.<\/p>\n

C# was designed to provide a simple, modern, and general-purpose programming language with strong type checking, automatic garbage collection, and support enterprise-level performance demand. C# is written to provide high-level programming support but can still provide access to lower-level memory if desired. The letter “C” in C#’s name has no literal implications with either C or C++.<\/p>\n

4. TypeScript<\/h2>\n

\"popular<\/a><\/p>\n

TypeScript was developed by Microsoft to provide a more robust, type-checked programming environment for the development of large-scale JavaScript applications. TypeScript is a\u00a0superset<\/em> of JavaScript such that all valid JavaScript is also valid TypeScript\u2014characterized partly by all TypeScript’s transcompilation into JavaScript.<\/p>\n

TypeScript is a relatively new programming language, having been released in 2012 by Microsoft, but has since seen large-scale adoption by many major IDEs including Eclipse, WebStorm (Jetbrains), and Atom. Its popularity is arguably married to it’s relevance to JavaScript. As such, one could consider these two languages in combination with the most popular programming language.<\/p>\n

3. Java<\/h2>\n

\"popular<\/a><\/p>\n

Java was released in 1995 by Sun Microsystems (now Oracle) and is a write-once-run-anywhere language\u2014facilitated by the Java Virtual Machine. It features a class-based, object-oriented design with strongly typed syntax similar to both C and C#\u2014but without access to low-level memory management. Java powers such as popular web frameworks as Spring but is suited for a wide range of applications.<\/p>\n

Java’s main claim to fame is its robust accommodation of portability while maintaining the high-performance architecture. Java compiles into an intermediate code\u2014bytecode\u2014that is executed by the JVM which translates the code into machine-native code. All users need to do to facilitate this has the latest version of the Java Runtime Environment installed for their platform.<\/p>\n

2. Python<\/h2>\n

\"popular<\/a><\/p>\n

Python is a high-level programming language that prioritizes code readability and rapid-application development (RAD). It’s intended for general purpose use, has an object-oriented design (everything is an object in Python), is dynamically typed, has garbage collection, and\u2014unlike many other languages listed here\u2014is an interpreted language. Python was first released in 1991 and has evolved\u00a0considerably<\/em> since then.<\/p>\n

Python is built using the C programming language and provides a robust standard library and has characteristic language features such as list comprehensions. Python’s surge in popularity can be partially explained by its vast ecosystem of mature libraries such as TensorFlow (machine learning), Django (web applications), Requests (http requests), and SQLAlchemy (Database ORM). Many Python libraries are written in lower-level languages such as C and integrated into higher-level APIs.<\/p>\n

1. JavaScript<\/h2>\n

\"popular<\/a><\/p>\n

JavaScript is a high-level, just-in-time compiled, multi-paradigm language that was originally developed under the ECMAScript standard. Its name has no<\/em> bearing on Java’s and has evolved as a general-purpose web-based programming language. Historically, JavaScript has been a browser-based language but recent technology such as Node.js has seen JavaScript migrating to the server-side as well.<\/p>\n

JavaScript is a prototypical language, has a\u00a0lot<\/em> of quirks, and was originally written in 10 days by Brenden Eich to help power the Netscape internet browser. Today, it powers dynamic web applications, has an ecosystem of libraries catering to all interests and receives unparalleled commercial support\u2014illustrated by such endeavors as Microsoft’s TypeScript.<\/p>\n

Review<\/h2>\n

There is no clear-cut approach for qualifying what makes the “best” programming language. Use-cases, application-specific requirements and developer knowledge all play paramount roles in determining which language one should approach a new task with.<\/p>\n

Language popularity on the other hand\u2014that’s something for which insights from code-centric sources like GitHub can provide. The programming languages listed here were determined in such a way by referencing a total number of language-tagged repositories hosted with GitHub. Certainly to be taken with a grain of salt\u2014but also certainly interesting to consider!<\/p>\n","protected":false},"excerpt":{"rendered":"

What makes a programming language popular? Is it available libraries, maturity, syntactic sugar? While such qualitative answers may not be easy to answer, one can look at usage data to help describe popularity. What better source to confer usage data from than GitHub? Each year, GitHub publishes The State of the Octoverse (SOTO)\u2014a comprehensive analysis […]<\/p>\n","protected":false},"author":2,"featured_media":497,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[655,201],"tags":[202],"acf":[],"_links":{"self":[{"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/posts\/481"}],"collection":[{"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/comments?post=481"}],"version-history":[{"count":4,"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/posts\/481\/revisions"}],"predecessor-version":[{"id":499,"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/posts\/481\/revisions\/499"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/media\/497"}],"wp:attachment":[{"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/media?parent=481"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/categories?post=481"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.alpharithms.com\/wp-json\/wp\/v2\/tags?post=481"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}