• 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

    • Wow, imagine you dump hundreds of hours into completing things and unlocking stuff and you lose it all. Back in the day when cheats were built into games, you could at least unlock things again that way without spending hundreds of hours again. But those days are long gone for some reason as no one builds cheats into games anymore. So it's even more painful that studio that's on its 6th installment **** it up so badly.
    • Spotify finally removes the disco ball app icon in the latest update by Ivan Jenic Image: Spotify Spotify has just released an update that removes its now infamous disco ball icon. The update reverts the app icon to the familiar flat green logo after weeks of mixed reactions online. The icon arrived on May 13 as part of the company's 20th anniversary celebration and was always intended to be temporary, though Spotify only confirmed that after the backlash started. The disco ball took the internet by storm, as the reception was split. A vocal group of users called it ugly and disorienting, with some iOS users noting that the 3D glowing effect made the app look like it was stuck mid-update. On the other end, the icon picked up a following of its own. Its retro, three-dimensional look immediately stood out against the flat, minimalist aesthetic that has dominated app design for years. It even started a small movement, spawning what people started calling "discomorphism," a mashup of disco and skeuomorphism. Other brands started posting disco ball versions of their own logos, probably in an effort to ride the wave of memes that flooded the internet during late May. Spotify has had a turbulent relationship with its user base lately. Besides the disco ball icon, which certainly wasn't appreciated by everyone, the company has also received backlash for its willingness to include AI-generated music on its platform. On May 17, Spotify promised the old icon would return “in a few weeks.” And now it looks like that time has finally arrived. So, whether you liked the disco ball or it made you uncomfortable, it’s now gone for good. The next time you update the Spotify app on your phone, the old, flat-design icon will return.
    • Playground Games confirms Forza Horizon 6 save wipe bug by Taras Buria Forza Horizon 6 was launched last month to critical acclaim (check out our review here), and it became a smash hit in an instant. Now, weeks into the launch, with die-hard fans clocking hundreds of hours, Forza Horizon 6 is facing a serious issue: save wipes. After multiple complaints on Reddit and social media, the studio issued a statement. The problem with missing saves came shortly after Playground Games promised the initial batch of gameplay tweaks and improvements. Unfortunately, there seems to be no temporary fixes for those affected by unexpected save wipes. However, the studio published a new support document with a few important steps users should try. First, affected gamers should open a support ticket immediately (go here to file one) so that the support team can try recovering the lost progress by reverting to an earlier save. Playground Games says this should be done the same day the issue occurs. Meanwhile, gamers are urged not to start new play sessions or create new saves. The studio also published a few things gamers should try to avoid to prevent potential progress loss: Ensure your Gaming Services app on PC or XBOX Series X|S console is fully up to date. On XBOX Series X|S consoles, disable Quick Resume for Forza Horizon 6: To disable Forza Horizon 6 from using Quick Resume, highlight the game box art anywhere in the console experience (Home, My Games & Apps, Pins, etc) and then press the Menu button, then go to Manage game and add-ons > Quick Resume settings > Disable Quick Resume. Ensure you are online when ‘quitting’ the game. Give your saved time to sync to the cloud before powering off or switching devices. Do not force quit the game during save screens. Do not power off the device during gameplay. Always "Quit" (console) or "Exit to desktop" (PC) once you've finished your play session, ensuring the save icon is not visible when you’re closing the game. Before turning off your console, shutting down your PC, or force-closing the Steam app, give your devices or clients at least a few minutes to ensure your latest progress has been synchronized with the cloud. This will reduce the risk of progress reversions as you switch between different platforms. XBOX Series X|S consoles, Steam, and the XBOX app on PC all include game save indicators that confirm your progress has been synced. You can read more about the bug in the official support document here. Forza Horizon 6 is currently available on PC (Steam and the Microsoft Store), Xbox Series X|S, and Game Pass. The game is also coming to PlayStation 5 later this year.
  • Recent Achievements

    • One Year In
      slackerzz earned a badge
      One Year In
    • One Year In
      highriskpaym earned a badge
      One Year In
    • One Month Later
      highriskpaym earned a badge
      One Month Later
    • Week One Done
      highriskpaym earned a badge
      Week One Done
    • Week One Done
      FBSPL earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      522
    2. 2
      PsYcHoKiLLa
      199
    3. 3
      +Edouard
      158
    4. 4
      Steven P.
      84
    5. 5
      ATLien_0
      75
  • Tell a friend

    Love Neowin? Tell a friend!