• 0

What is the most relevant programming language to learn?


Question

Hi,

I know there's a sticky regarding easy programming languages, but at the moment I was wondering what would be the most beneficial language to sit down and learn?

Would the likes of ASP, .NET and Silverlight be good to have as they would appear to be the way Microsoft is pushing their web technologies.

Or would it be better to learn something like C+/++/# (I don't know what ones are even relevant) and PHP, even though it would not be as widely recognised as some of the Microsoft applicaiton and web languages, at least where employment is concerned.

I'd just like to state that I'm not looking for work in the software/development sector, but looking to develop a skill that I could use in my current systems role. Especially as I'm being exposed to a lot of SharePoint and Exchange.

Cheers!

Recommended Posts

  • 0

I'm learning C in my own time right now - it is probably best to get the fundamentals nailed down first by learning something like C then from there branching out. Years ago one used to learn Pascal to nail down those fundamentals but it appears in recent times Visual Basic has replaced that.

Learning a language doesn't mean you have to stick with it - the important part is getting those fundamentals nailed down first and foremost.

  • 0

If you are exposed to a lot of Sharepoint, I would suggest C# as a language that would benefit you greatly. Sharepoint is (mostly) written in C#, and VisualStudio.net has a wealth of integration.

  • 0

I'll have a look at C, as I can move into C+/++/# from there. It's good that I can then implement all/some/any knowledge at all into the SharePoint installs and configurations I've to do.

It really depends on what you want to do, if you want to do web apps then C/C++ are useless. Give us a bit more information ;)

That's the thing, I don't really want to do anything. Saying that I would love to build an applicaiton to catalogue all my CD's and DVD's. Just for the hell of it, you know. Yes, I know that these will already exist, and I can download and install them now, but where's the fun in that?

  • 0

1. PHP

# What it is: An open-source, interpretive, server-side, cross-platform, HTML scripting language, especially well-suited for Web development as it can be embedded into HTML pages.

# Why you should learn it: Its particularly widely used. "High-speed scripting with caching, augmented with compiled code plug-ins (such as can be done with Perl and PHP) is where the future is. Building Web apps from scratch using C or COBOL is going the way of the dinosaur,"

2. C#

# What it is: A general-purpose, compiled, object-oriented programming language developed by Microsoft as part of its .NET initiative, it evolved from C and C++

# Why you should learn it: Its an essential part of the .Net framework. "Learning C#, which is just Java with a different name plate, is critical if you heavily use Microsoft,"

3. AJAX (Asynchronous JavaScript and XML)

# What it is: Though technically not a programming language, AJAX uses XHTML or HTML, JavaScript and XML to create interactive Web applications.

# Why you should learn it: Ever since Google Maps put AJAX, well, on the map, the requests for AJAX-knowledgeable pros went through the roof. "The demand for AJAX knowledge is huge because its so damned hard to learn," said Huckaby. Of note, Microsoft announced recently plans to release a tool named Atlas that will make AJAX easier to implement. "If Microsofts Atlas tool is successful, it would bring the extreme complexity and annoyance of AJAX to the average worker,"

4. JavaScript

# What it is: Not to be confused with Java, JavaScript is a an object-oriented, scripting programming language that runs in the Web browser on the client side. Its smaller than Java, with a simplified set of commands, easier to code and doesnt have to be compiled.

# Why you should learn it: Embedded into HTML, its used in millions of Web pages to validate forms, create cookies, detect browsers and improve the design. With its simplicity to learn as well as wide use, its considered a great bang for your educational buck.

5. Perl

# What it is: Perl is an open-source, cross-platform, server-side interpretive programming language used extensively to process text through CGI programs.

# Why you should learn it: Perls power in processing of piles of text has made it very popular and widely used to write Web server programs for a range of tasks. "Learning some form of scripting language, such as Perl or PHP is critical if you are doing Web apps,"

6. C

# What it is: A standardized, general-purpose programming language, its one of the most pervasive languages and the basis for several others (such as C++).

# Why you should learn it: "Learning C is crucial. Once you learn C, making the jump to Java or C# is fairly easy, because a lot of the syntax is common. Also, a lot of C syntax is used in scripting languages,"

7. Ruby and Ruby on Rails

# What they are: Ruby is a dynamic, object-oriented, open-source programming language; Ruby on Rails is an open-source Web application framework written in Ruby that closely follows the MVC (Model-View-Controller) architecture.

# Why you should learn it: With a focus on simplicity, productivity and letting the computers do the work, in a few years, its usage has spread quickly. As a bonus, many find it easy to learn.

8. Java

# What it is: An object-oriented programming language developed by James Gosling and colleagues at Sun Microsystems in the early 1990s.

# Why you should learn it: Hailed by many developers as a "beautiful" language, it is central to the non-.Net programming experience. "Learning Java is critical if you are non-Microsoft,"

9. Python

# What it is: An interpreted, dynamically object-oriented, open-source programming language that utilizes automatic memory management.

# Why you should learn it: Designed to be a highly readable, minimalist language, many say it has a sense of humor (spam and eggs, rather than foo and bar), Python is used extensively by Google as well as in academia because of its syntactic simplicity.

10. VB.Net (Visual Basic .Net)

# What it is: An object-oriented language implemented on Microsofts .Net framework.

# Why you should learn it: Most argue that VB.Net is currently more popular than ever and one of the only "must-learns." "It is currently dominating in adoption and that is where all the work is,"

  • 0
I honestly don't see the need for VB when you have C#. The two are virtually the same, no?

VB is easier in most respects and doesn't have pointers. C# has some slightly stranger syntax for some things IMO, but supports pointers and is a bit faster in some cases. VB is easy for previous VB6 devs to pick up. C# is closer to C/C++

  • 0

First.. learn PHP and MySQL this will give you an incredibly big market availability and will also allow you to get into various frameworks based off PHP.

It's free and will get you competitive.

Microsoft stuff is good to get into but it's really a much narrower choice because you are tied to much more closed platform and set of tools. It's a different mindset so to speak. Don't get me wrong, you'll probably make more money with Microsoft stuff like .NET and C# but once you pick that you are kind of stuck in that direction.

C++ is definitely a good choice as it is supported beyond Microsoft and definitely is a good grounds for anything really.

At least my 2 cents and from my own personal experience as I worked with all of them.

  • 0
That's the thing, I don't really want to do anything. Saying that I would love to build an applicaiton to catalogue all my CD's and DVD's. Just for the hell of it, you know. Yes, I know that these will already exist, and I can download and install them now, but where's the fun in that?
For desktop applications, C# or Python. Python is easier to pick up and generally gets the job done faster, but C# has the better libraries and IDE support. Another advantage of C# is that the syntax is very similar to Java, and to a lesser extent, C++ and C.

For games as a hobby, again, C# or Python. XNA is far superior to PyGame, but you can still get some nice 2D stuff running on PyGame if you're into that. Anything more serious and XNA does the job best. For industry-class performance, you need C++. Any serious job as a game programmer requires C++.

C is useful, many would say, for the purpose of learning low-level concepts, and most of today's existing code is probably still written in C (and in COBOL, for that matter), so if you choose your job at random, there's a good chance you'll see some C code. It is, however, a PITA. Might as well start with it so that you can't compare with better languages and fall into depression (I don't like C :p ).

I can't speak for web programming languages as I did almost no web development, but if that's your cup of tea, I can suggest http://www.w3schools.com/ and start with HTML as it seems you need a basic understanding of that before jumping into Javascript and PHP.

Edited by Dr_Asik
  • 0
I honestly don't see the need for VB when you have C#. The two are virtually the same, no?
Indeed. You can write your programs in C# and run them through an automatic converter if your company really requires VB.

Jokes aside, VB and C# are probably the two most similar languages in existence, and VB is losing its relevance.

  • 0
First.. learn PHP and MySQL this will give you an incredibly big market availability and will also allow you to get into various frameworks based off PHP.

A bit off topic, but: isn't Oracle buying up Sun and killing off MySQL? It really shouldn't matter because SQL is generally the same across variants, but just something to keep in mind.

  • 0

I'd start with java, has a well defined syntax and is also cross platform

A bit off topic, but: isn't Oracle buying up Sun and killing off MySQL? It really shouldn't matter because SQL is generally the same across variants, but just something to keep in mind.

The 'killing off mysql' is in contention at the moment, I certainly wouldn't want to see it disappear!

  • 0
VB is easier in most respects and doesn't have pointers. C# has some slightly stranger syntax for some things IMO, but supports pointers and is a bit faster in some cases. VB is easy for previous VB6 devs to pick up. C# is closer to C/C++

You can do pointer stuff in VB.NET as well (same framework and such), although there's a lot more syntax required.

VB.NET and C# will (in most cases) compile down to the exact same code, so there's no real speed difference for the majority of things.

  • 0
A bit off topic, but: isn't Oracle buying up Sun and killing off MySQL? It really shouldn't matter because SQL is generally the same across variants, but just something to keep in mind.

Sun can bought (and can sell) the MySQL name/trademarks but users can simply fork the code and continue on with a new name. After Sun snagged MySQL nearly all of the original developers jumped ship and many have started their own branches (MariaDB and Drizzle are probably the most well known).

  • 0

To be honest, you really never will know what you end up doing.

I used C, C#, C++, ASP, Java, Perl, Python, and Ruby in college and did a web project in Perl for work. I hated Perl.

I graduated and got a job at a good company programming OS software. Guess what I'm using.

Perl and Shell. Go figure...

  • 0

My advice is to try some languages, and stick to the one that you find the easiest to learn and has a lot of the basic principles used in others laguages. It will be the basis when you will move to another language.

In the end, "destiny" decides which language you will use and not you. At best you can learn the common stuff that all languages have so you won't have too much trouble learning a new one. I'd recommend learning c# because it has a well defined syntax, a lot of resources that you can read and visual studio helps you a lot when coding. And it has a lot of principles that are widely used in other languages.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • I recently tried edge. It seems a lot better. A lot of the junk in it is gone. It seems less bloated and snappy.
    • Lethal fake phone chargers are still being sold on Amazon and eBay, UK watchdog warns by Paul Hill Credit: Pexels The UK consumer rights organization, Which?, is claiming that “potentially lethal knock-off chargers” are still being sold on online marketplaces seven years after it exposed the danger of these chargers. In its latest investigation, it bought 15 USB phone chargers from several online marketplaces and found they were missing key information, meaning they cannot be legally sold in the UK. Which? bought the 15 chargers from seven online marketplaces. These were Amazon (including Amazon Haul), AliExpress, B&Q Marketplace, Debenhams Marketplace, and eBay. It said that the chargers were so badly made that anyone using them was at risk of electric shock. Over half the chargers also posed fire and explosion risks. Of the chargers purchased, one was a fake Apple USB-C 35W power adaptor charger. To confuse buyers, the box was branded with an Apple logo, but testing found it to be a fake. Further testing picked up arcing sounds after 10 seconds of use, where a current jumps between two parts of the electrical circuit, which can cause fires, explosions, or electric shock. The manufacturers of this particular charger also put modeling clay inside it to make it feel more weighty, robust, and genuine. Not all of the chargers were technically faulty; however, some were missing key packaging, markings, and documentation, meaning they can’t be sold in the UK legally. Which? said that it is now campaigning alongside a coalition of safety groups and businesses for new laws that make online marketplaces responsible for ensuring the safety of products that they choose to list on their websites. It also said the government needs to start using powers under the Product Regulation and Metrology Act, which was adopted last July, to impose safety requirements on online marketplaces via secondary legislation, but so far, there have been delays. No matter what country you are in, be sure to properly research what you are buying and only buy authentic chargers to prevent fires. You can read more about Which?’s research here.
    • Visual Studio finally gets long-awaited feature that developers will love by Usama Jawad Visual Studio Code is Microsoft's popular, lightweight, open-source code editor, it is actually Visual Studio that is the company's flagship integrated development environment (IDE). Although the IDE already offers a boatload of useful features for developers, Microsoft has finally introduced a long-requested capability that will be loved by many. While developers have already been able to create Git pull requests (PRs) directly within Visual Studio for the past couple of years, it had not been possible to review a PR without switching to the browser, until now. Microsoft revealed in December 2025 that it is working on UX that enables developers to do just that, and fast-forward to June 2026, and Visual Studio finally has native capabilities to open and inspect a PR, discuss feedback, and wrap up the review, all without switching to the browser. This integration works for both GitHub and Azure DevOps (including on-prem). Developers have access to multiple surfaces to open a PR, including Git Repository, Git Changes, and the Git menu in Visual Studio. Once you open a PR, all the important details will be immediately visible to you, from where you can navigate to various levels of granularity and branch states, depending on the reviews that you are engaged in. As you would expect, you also get a diff view that enables you to see code changes inline or side-by-side in a separate panel. You can also review commit-by-commit. Additionally, this UX fosters collaboration as you can leave comments, reply to threads, and resolve conversations easily. Naturally, you can also leverage Copilot to apply a code suggestion to fix a potential issue. When you are done, you have the ability to approve, complete, and merge the PR. This is a pretty major feature as it has been requested heavily for the past few years. You can try it out in Visual Studio 2026 version 18.7, made available here recently. Microsoft plans to enhance this experience further in future releases with comment filtering, a timeline of PR activity, and more.
    • This AdGuard Family lifetime deal is still only $15.97 by Steven Parker Today's highlighted Neowin Deal comes via our Apps + Software section, where you can get a lifetime subscription and save 90% on a lifetime AdGuard Family Plan. AdGuard is a unique program that has all the necessary features for what they claim to be "the best web experience." The software combines the an advanced ad blocker, a privacy protection module, and a parental control tool—all working in one app. This software deals with annoying ads, hides your data from a multitude of trackers, protects you from malware attacks, and even lets you restrict your kids from accessing inappropriate content. Install AdGuard and see the internet as it was supposed to be: clean and safe. Get rid of annoying banners, pop-ups & video ads once and for all Hide your data from the multitude of trackers & activity analyzers that swarm the web Avoid fraudulent and phishing website and malware attacks Protect your kids online by restricting them from accessing inappropriate & adult content Good to know Family Plan Length of access: lifetime This plan is only available to new users Redemption deadline: redeem your code within 30 days of purchase Max number of devices: 9 Access options: desktop & mobile Software version: AdGuard Family Updates included A lifetime subscription of AdGuard Family Plan normally costs $169.99, but this deal can be yours for just $15.97, that's a saving of $157.02. For full terms, specifications, and license info please click the link below. Get this AdGuard Family lifetime deal for just $15.97 (was $169.99) Although priced in U.S. dollars, this deal is available for digital purchase worldwide. As an online publication, Neowin too relies on ads for operating costs and, if you use an ad blocker, we'd appreciate being whitelisted. In addition, we have an ad-free subscription for $28 a year, which is another way to show support! Support queries If you have queries or need support for any of the Neowin Deals, please use the contact form here. Neowin Deals are managed and sold by StackCommerce who represent Neowin on an affiliate basis. Why we post these deals We post these because we earn commission on each sale so as not to rely solely on advertising, which many of our readers block. It all helps toward paying staff reporters, servers and hosting costs. So for those that keep moaning and complaining, be thankful we're still online for you to even do that. Other ways to support Neowin Whitelist Neowin by not blocking our ads Create a free member account to see fewer ads Make a donation to support our day to day running costs Subscribe to Neowin - for $14 a year, or $28 a year for an ad-free experience Disclosure: Neowin benefits from revenue of each sale made through our branded deals site powered by StackCommerce.
    • the MCT currently downloads 26200.8653, so not completely up to date.
  • Recent Achievements

    • Week One Done
      Timaximus earned a badge
      Week One Done
    • One Month Later
      Timaximus earned a badge
      One Month Later
    • Rookie
      FBSPL went up a rank
      Rookie
    • First Post
      davidbazooked earned a badge
      First Post
    • Week One Done
      davidbazooked earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      499
    2. 2
      PsYcHoKiLLa
      174
    3. 3
      +Edouard
      160
    4. 4
      Steven P.
      84
    5. 5
      ATLien_0
      75
  • Tell a friend

    Love Neowin? Tell a friend!