• 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

    • Since they open sourced the calculator in Win 10/11 it is much better and can do a lot, I love it.
    • That's just silly imo. The lengths that man goes to just to avoid W11 is just nuts. Very, very few home users would do that. I will say this though, he is committed. Btw, I note on askwoody that Woody Leonhard passed away March, 2025 aged 73. His site was one of my favorites back in the day. Belated yes but RIP Woody.
    • Because of the EU (a good thing) newer android devices been getting 5 years worth of security patches. Except some Motorola which found the loop hole, and offer ZERO updates. In addition, Google for years have been making where it can patch some stuff by updating the core Google Play Store itself.  As echoed earlier,  you take the security risk in to your own hand beyond supported.
    • Win11Debloat 06.11.2026 by Razvan Serea Win11Debloat is a lightweight, easy to use PowerShell script that allows you to quickly declutter and customize your Windows experience. It can remove pre-installed bloatware apps, disable telemetry, remove intrusive interface elements and much more. The script also includes many features that system administrators and power users will enjoy. Such as a powerful command-line interface, support for Windows Audit mode and the option to make changes to other Windows users. All changes made by Win11Debloat can be easily reversed, and most removed apps can be restored via the Microsoft Store. A full guide on how to undo the changes is available here. Win11Debloat features: Below is an overview of the key features and functionality offered by Win11Debloat. Please refer to the wiki for more information about the default settings preset. Remove a wide variety of preinstalled apps. Click here for more info. Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads. Disable tips, tricks, suggestions & ads across Windows. Disable Windows location services & app location access. Disable Find My Device location tracking. Disable 'Windows Spotlight' and tips & tricks on the lock screen. Disable 'Windows Spotlight' desktop background option. Disable ads, suggestions and the MSN news feed in Microsoft Edge. Hide Microsoft 365 ads on the Settings 'Home' page, or hide the 'Home' page entirely. Disable & remove Microsoft Copilot. Disable Windows Recall. Disable Click to Do, AI text & image analysis tool. Prevent AI service (WSAIFabricSvc) from starting automatically. Disable AI Features in Edge. Disable AI Features in Paint. Disable AI Features in Notepad. Disable the Drag Tray for sharing & moving files. Restore the old Windows 10 style context menu. Turn off Enhance Pointer Precision, also known as mouse acceleration. Disable the Sticky Keys keyboard shortcut. Disable Storage Sense automatic disk cleanup. Disable fast start-up to ensure a full shutdown. ...and more. Once you’ve downloaded the Win11Debloat file (Get.ps1), just follow these quick steps: Locate the Get.ps1 script file. Right-click the file and select Run with PowerShell from the context menu. If prompted by User Account Control (UAC), select Yes to grant the script the necessary administrative permissions. Win11Debloat 06.11.2026 fixes: Fix lock screen spotlight option being disabled when disabling the start recommended section by @Raphire in #619 Fix log message formatting by @Raphire Note The -RemoveCommApps and -RemoveW11Outlook command-line parameters for uninstalling a few specific apps have been removed with this release. If you previously relied on these parameters, please see this wiki page for alternative methods of removing these apps. Download: Win11Debloat 06.11.2026 | Open Source View: Win11Debloat Home Page | Screenshots 1| 2 Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • Rookie
      restore went up a rank
      Rookie
    • Very Popular
      AndrewSteel earned a badge
      Very Popular
    • Veteran
      Taliseian went up a rank
      Veteran
    • One Month Later
      Clizby earned a badge
      One Month Later
    • One Month Later
      Timaximus earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      506
    2. 2
      +Edouard
      164
    3. 3
      PsYcHoKiLLa
      154
    4. 4
      ATLien_0
      86
    5. 5
      Steven P.
      79
  • Tell a friend

    Love Neowin? Tell a friend!