• 0

What is (are) the best programming language(s) for beginners?


  

465 members have voted

  1. 1. What is (are) the best programming language(s) for beginners?

    • Pascal
      13
    • Java
      68
    • Python
      36
    • Vb.net
      50
    • Basic
      23
    • Delphi
      6
    • C
      37
    • C++
      37
    • C#
      100
    • Smalltalk
      0
    • Lisp
      1
    • A++
      0
    • Curry
      1
    • Haskell
      2
    • Ruby
      12
    • Perl
      8
    • Other (refer)
      9
    • PHP
      62


Question

Recommended Posts

  • 0

Another vote for C#. You can use it for both client side and web coding and there are MANY examples to learn from. Since it's syntax is similar to C, the transition to Java, JS, PHP, and other C syntax languages is easier.

  • 0

My vote goes to C# as well. I started out doing Basic, then Visual Basic, then VB.NET then transitioned to C#. I wish C# was around in 2000 though when I started programming. C#'s syntax is very very similar to Java, so going from C# to Java would be pretty easy. Also, like Glen said, it'd be easier to go to another language. Plus, Microsoft's development tools are the best!

  • 0

PHP is very easy to program in as well, and there's a lot of motivation because its very easy for others to see your work without distributing anything.

You're my friend, a PHP supporter. Can we have PHP in the list now :p

  • 0

I reckon it depends what you're gonna be doing with it:

C is good for lower-level stuff like PICs, or *NIX as that's what it's written in, and provides a good base for C++/Java (as C is not object-oriented and these 2 are). And it's good for cross-platform stuff if you stick to ANSI standard.

Otherwise if you want to get straight into shiny GUIs and higher level stuff, probably one of the .net languages like VB or C#.net.

And Perl, although it is C-like with major quirks, is useful for web-stuff like CGI (as in Common Gateway Interface) and it's a good base for PHP (obviously).

Having learned the basics of VB.net then a lot of C, I found stuff like Perl and Javascript (not java!) easy to pick up, so anything C-like is a good thing to know!

  • 0

I'd say that the best language to learn programming with is Python. That said, it depends entirely on what you want to do. C and C++ are worthwhile learning, but they are complex languages which are most easily learned in an academic environment (universities often teach these), and not by yourself (although some of the knowledge learned through these languages isn't learned using other languages). C# is a good, clean language based on C-style syntax, and is good if you don't really want to understand the underlying concepts, but are more focused on rapid application development and instant gratification. VB.NET is good in this respect too, however the syntax learned doesn't transfer as well between languages as C-based languages do.

My preference goes to Python simply for the fact that if you want to learn the absolute basics of programming Python can give you that facility while hiding away any of the other things that you might need to know as a programmer. Python can be mostly written without any convoluted syntax such as curly braces and forces the object-oriented programming style which is common among most languages used today. It does hide a lot of complexity away from you, which can be both an advantage and a disadvantage at the same time, its also hella slow, and running code written in Python can be many times slower than the same code written in a lower-level language such as C. :)

For anyone that's interested, there's a nice graphical comparison of the speed/code-size of a lot of different languages at http://blog.gmarceau.qc.ca/2009/05/speed-size-and-dependability-of.html. Whats interesting there is that two of the most highly ranked languages are Lua, and F#, although I can't comment since I've tried neither language!

  • 0

For anyone that's interested, there's a nice graphical comparison of the speed/code-size of a lot of different languages at http://blog.gmarceau.qc.ca/2009/05/speed-size-and-dependability-of.html. Whats interesting there is that two of the most highly ranked languages are Lua, and F#, although I can't comment since I've tried neither language!

Lua is a fantastic language, both for ease of learning and syntax-wise. It is interpreted, however, like a lot of the other scripting languages, so it's not particularly fast, but faster than most interpreted languages I believe. It's great for embedding into C++ applications to provide scripting support. There is also a JIT compiler available that can be embedded with the C++ interpreter as well, which speeds things up nicely. It has quite a large following with video games development, where it is used quite often, notable example being Crysis/CryEngine. I think one of the developers for that rolled his own scripting language called Squirrel which was based on what he had found he liked/disliked about lua.

  • 0

Nah the best language for beginners is brainfunk (n should be c :p):laugh:

+++++ +++++ initialize counter (cell #0) to 10
[ use loop to set the next four cells to 70/100/30/10
 > +++++ ++ add 7 to cell #1
 > +++++ +++++ add 10 to cell #2 
 > +++ add 3 to cell #3
 > + add 1 to cell #4
 <<<< - decrement counter (cell #0)
] 
> ++ . print 'H'
> + . print 'e'
+++++ ++ . print 'l'
. print 'l'
+++ . print 'o'
> ++ . print ' '
<< +++++ +++++ +++++ . print 'W'
> . print 'o'
+++ . print 'r'
----- - . print 'l'
----- --- . print 'd'
> + . print '!'
> . print '\n'

  • 0

I'd say the easiest to start with is VB.NET - it's got a more "english like" syntax than C#. If you have no programming experience at all, jumping into C# straight away can be more confusing then jumping into VB.NET. (Of Course, you can also try Microsoft's Small basic which is also invaluable for getting people to grips with the basics amd heading them off to the bigger world!)

Start with VB, and if you feel the need after you're comfortable with it, learn C# as well (which also gets you part way there to Java as well). Also any language you can learn with full in Visual Studio's IDE would help greatly, simply because features like intellisense are so very helpful, especially for a beginner.

  • 0

I'd say the easiest to start with is VB.NET - it's got a more "english like" syntax than C#. If you have no programming experience at all, jumping into C# straight away can be more confusing then jumping into VB.NET. (Of Course, you can also try Microsoft's Small basic which is also invaluable for getting people to grips with the basics amd heading them off to the bigger world!)

Start with VB, and if you feel the need after you're comfortable with it, learn C# as well (which also gets you part way there to Java as well). Also any language you can learn with full in Visual Studio's IDE would help greatly, simply because features like intellisense are so very helpful, especially for a beginner.

Personally, I think VB's "English like" syntax is too verbose and convoluted. Just skip it and go to C#.

  • 0
I'm a believer of C then C++ and THEN move to something like C#, Java or Objective-C. But I know lots of people disagree

Suggesting to start on a harder, heavier language? Really?

I am keen to understand your thoughts further?

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

    • No registered users viewing this page.
  • Posts

    • Pity the article on MS website gives no indication when said "20%" performance gains will actually be rolled out to users.
    • I just looked on my computer and there are settings and log files for utilities I have never even turned on!
    • O&O ShutUp10 3.1.1104 by Razvan Serea O&O ShutUp10 offers a simple yet effective way to take control of your Windows privacy. It provides access to almost 50 privacy-related tweaks, most of them hidden or not easily accessible to the average computer users. Using a very simple interface, you decide how Windows 10/11 should respect your privacy by deciding which unwanted functions should be deactivated. Using ShutUp10 you can easily disable Windows Defender, turn off telemetry, disable peer-to-peer updates, turn off Wi-Fi Sense, disable automatic Windows updates, turn off and reset Cortana and more. ShutUp10 allows you to create a System Restore point before you apply any changes, so that you can revert your system at any time if you run into problems. O&O ShutUp10 is entirely free and does not have to be installed – it can be simply run directly and immediately on your PC. And it will not install or download retrospectively unwanted or unnecessary software, like so many other programs do these days! O&O ShutUp10 Free and Premium The latest version brings O&O ShutUp10 Premium, expanding the app’s long-standing privacy controls with automatic enforcement of user-defined settings. Instead of manually rechecking options after every Windows update, users can set their preferred privacy configuration once—or apply recommended settings in a single click—and the tool continuously monitors them in the background. If Windows 10 or 11 re-enables disabled features or introduces new data collection paths, Premium restores the chosen settings automatically without user intervention. The free version remains available and fully functional for manual adjustments, offering the same core privacy controls for Windows. However, the Premium tier is aimed at users who want long-term, hands-off protection, adding automatic reapplication after updates, ongoing monitoring, and optional notifications to ensure privacy settings remain consistent over time. O&O ShutUp10 3.1.1104 changelog: Added “Show Differences” button in the overview panel “Don’t show again” option for the restore point prompt Ctrl+F keyboard shortcut for search/filter functionality Detection and linking of system-wide and user-specific setting associations Automatic search while typing PREM: Option to preserve notification counters and timestamps across application restarts PREM: Reset blocked settings button in the Settings dialog PREM: Informational message when no settings are blocked PREM: Update check can also be triggered from the menu PREM: Notification deduplication and activity log summary feature Improved L005 “Disable Windows Location Service”: Version-specific split (up to Windows 11 23H2) and new variant for Windows 11 24H2+ L001 (Disable Location): Added Night Light warning to the description in all languages Search now detects setting IDs even when ID display is disabled and offers to enable it Detection and removal of Copilot/AI desktop apps in RecallTerminator Optimized High DPI support PREM: Reset button is now only enabled when blocked items exist – setting IDs are shown in the confirmation dialog PREM: Updated tray icons with higher-resolution versions PREM: Activity Log timestamps now use localized date and time formats PREM: Tray icon status now uses OK/Warning indicators and localized tooltips PREM: Recall folder detection switched to service-based detection PREM: Copilot uninstallation now provides UI feedback and improved verification Fixed Description text was not displayed correctly for the last item and disappeared when clicking the scrollbar Crash when clicking a search result heading or the […] button PREM: Installation path is now correctly preserved during upgrades PREM: Tray icon was not reliably removed when exiting the application PREM: Main window was not displayed correctly in single-instance mode PREM: Incorrect display of the & symbol in tray icon tooltips on Windows 10 PREM: Fixed notification flooding after sleep/standby PREM: Dashboard was not refreshed after applying recommended settings during onboarding PREM: Progress bar was not reset after deleting Recall folders PREM: Fixed service startup failures PREM: Fixed incorrect drift detection when Automatic Protection was disabled PREM: Notifications now correctly count all deviating settings when protection is enabled PREM: Registration Wizard was shown after sleep/standby despite a valid license Download: O&O ShutUp10 3.1.1104 | 76.4 MB (Freeware) Download: O&O ShutUp10 32-bit | ARM64 View: O&O ShutUp10 Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Fascinating...W h i t e P o w e r is now also asterisks out.  
    • In the past few days I have noticed two odd moderation activities. First, when I posted the term 'White Nationist Christian' it was asterisk's out. When I changed it to **** it was allowed! Second, in the Politics is a ###business thread I was allowed to post that the GOP is a party of p e d ophiles but I was censored  when I posted the GOP are a party of p e d ophile protectors. Wtf Neowin. Please explain.
  • Recent Achievements

    • One Month Later
      Vincian earned a badge
      One Month Later
    • First Post
      Jocimo earned a badge
      First Post
    • Week One Done
      suprememobiles48 earned a badge
      Week One Done
    • One Month Later
      Windows Guy earned a badge
      One Month Later
    • One Month Later
      Prasann earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      545
    2. 2
      +Edouard
      165
    3. 3
      PsYcHoKiLLa
      86
    4. 4
      Steven P.
      66
    5. 5
      ATLien_0
      64
  • Tell a friend

    Love Neowin? Tell a friend!