• 0

Easy Programming Language


Question

Recommended Posts

  • 0

I would say COBOL, but I personally like working with C# & ASP

But it would be better to start with C/C++ as a starter's kit

Python is good too, since less code is required to complete a small application. For example, 2-4 pages of building a Java application can be equivalent to a one page of Python.

Cheers

  • 0

C++ is definitely one of the hardest languages. It's this patchwork of conflicting paradigms and compilation rules... It's hard enough to learn about pointers, but then you have to understand the subtle difference with references (a concept pretty much unique to C++); how do use arrays and pointer arithmetic, but also how to use STL containers; how to resolve circular dependencies (happened to me plenty of times when I started); why and when to separate definition from declaration in classes; why declaring a vector<vector<int>> throws an obscure compilation error; ... for a beginner, it's a hairy mess. (actually, not only for beginners, but that's another subject.) An easy language should have minimal overhead : think Python, VB...

  • 0

I tried to learn an easy programming language (To get into programming and so) and I found out Python to be very easy in a sense that the tutorials are really meant for those who have no programming background at all ... I eventually got busy and didn't go through with it but I suggest you give it a look

  • 0

What are you going to use this language for? You should be asking that question first. You don't want to be in a position where the language you learn doesn't help you create what you want.

I personally have started with VB 10 years ago, then switched to C++ to Java and finally C#. I am not counting the scripting languages like PHP/JS/VbScript and some of the less used ones like Perl and Python.

If you want to do web development I'd suggest looking into Ruby/PHP/C#

If you want to do linux/unix development I'd say take a look at Python or C++ or Java

If you want to do windows development look at C# or VB.NET or Java

Keep in mind that the .NET framework on which C# and VB.NET runs also supports IronPython, IronRuby. If you are developing on windows definitely take a look at C#, it is my favorite language so far.

Keep in mind, best way to learn is to keep writing code. Also, look at open source projects to see how people are tackling certain problems, it always pays to read good code.

  • 0

Dude you should look up C# it is easy and very useful. I have been studying it for a while now and there is much you can do with it. Not only can you use it in a wide variety of platforms like Linux, Mac OS , Solaris and Windows but it can also be used along with ASP.NET to make high end dynamic websites. Give it a try

  • 0

I think it's good to start on something easy and ease in to the "harder" stuff. I started on Basic, then to VB, then on to C like languages, e.g. C, C#, PHP, etc.

Personally, I think the most important part is understanding the logic, after that the syntax is trivial.

  • 0

I am surprised there are not more replies saying PHP. I think PHP is very easy, probably the easiest language that is used by a ton of people today. I make web sites and I use PHP a lot but I have a complex about it since I think it is so super easy. Kind of makes me want to ASP.NET more often but of course most webservers run on Linux. I think that PHP is a blessing to a lot of people because ASP.NET (C#) is quite a bit harder to learn (but it is great once you get the hang of it),

  • 0
What is the easiest programming language to learn?

What is the quickest?

At the present time, with just a mouse click giving us the full study material and all other details, any programming language is easy to learn...

I try some hand in C# and JAVA...

Put some effort in it and you'll find it very easy..

  • 0

Html is very simple.. but it is very older ..

i would suggest you to go for PHP or asp it seems to be difficult but when you start learning it... you will just enjoy learning it.. it is very interesting.

PHP is quiet latest then asp..

so get learn now and be a perfectionist...

  • 0
BASIC - or more specifically Visual BASIC (to do the simple stuff) if you are an absolute noob. If you know the difference between a while loop and a do-while loop (trust me there is one!) then you're probably ready to learn some Object Oriented Programming - recommend starting with Java and then learning pointers and moving over to C++ for some serious work.

Hope that helped!

Parimal

not basic, throwing a bone like that can misguide someone if he googles basic and finds the wrong stuff... basic isn't really a usable language anymore, even though microsoft did something lately to revive it as a learning language, forgot how they called it, still, visual basic is way to go my opinion, 6 preferably, you might have bit trouble getting it, pm me and i might be able to point you in right direction.

.NET VB is way harder to learn, i started learning and finished interest in VB 6 when i was 10-11 sorta

also about what bradwilson said, you shoulden't go to PHP until you know HTML, by the way, HTML is NOT a programming language, its a way to format pages. i suggest going into normal programming before web programming, you will have easier time grasping the main concepts.

if i were you, id care less about time and more about actually making sure your learning the fundamentals of programming, i can find you tons of people who know C++ C# java tens of languages and can't really program, a language is just a syntax, a tool, programming is creativity, there are tons of books about programing fundamentals, i suggest picking one up, and visual basic 6 is a great language to start with.

Edited by Matan Mates
  • 0

"Microsoft Small Basic is a project that is aimed at making computer programming accessible to beginners. The project comprises a simple programming language that gathers inspiration from the original BASIC programming language; a modern and attractive programming environment; and rich, extensible libraries. Together they make programming fun for kids and adults alike."

http://www.microsoft.com/downloads/details...6b-e7e2d7de793e

Visual Basic Express Edition (FREE)

http://www.microsoft.com/express/vb/

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

    • No registered users viewing this page.
  • Posts

    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
    • TeamViewer 15.78.4.0 by Razvan Serea TeamViewer is the fast, simple and friendly solution for remote access over the Internet - all applications in one single, very affordable module. Remote control of computers over the Internet, Instantly take control over a computer anywhere on the Internet, even through firewalls. No installation required, just use it fast and secure. Training, sales and teamwork, TeamViewer can also be used to present your desktop to a partner on the Internet. Show and share your software, PowerPoint presentations etc. File transfer, chat and more, Share your files, chat, switch the direction during a teamwork session, and a lot more is included in TeamViewer. TeamViewer key features: Cross-platform remote access (Windows, macOS, Linux, Android, iOS, IoT) Attended and unattended remote control Secure file transfer between devices Remote printing to local printers Multi-monitor support with easy switching Wake-on-LAN for sleeping devices Session links for quick connections (no password sharing) Web client access (no installation needed) End-to-end encryption (AES-256) Two-factor authentication and access controls AI-powered session insights and reporting Mass deployment and device management tools Customizable allow/block lists for security Command line and script execution remotely Performance monitoring and analytics dashboards TeamViewer 15.78.4.0 changelog: Improvements Permissions inheritance has been improved, increasing reliability when permissions are assigned to user group managers. Bugfixes Fixed a bug where 'Show details' button was not showing up on command bar upon selection of a device group. Fixed a bug which was causing the legacy groups to disappear when applying hide offline filter in basic view. Fixed a bug where devices were loading infinitely after login. Fixed a bug which was causing crash in application. Download: TeamViewer 15.78.4.0 | 32-bit | Portable | Mac | ~70.0 MB (Free for personal use) View: TeamViewer Home Page | Release Notes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      521
    2. 2
      PsYcHoKiLLa
      230
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      88
    5. 5
      Steven P.
      82
  • Tell a friend

    Love Neowin? Tell a friend!