• 0

Easy Programming Language


Question

Recommended Posts

  • 0

ASM :D

VB6 is where i started in retrospect, its easy, fast and alot of fun. it tells you what to do in practicality and the object browser is fun in a jar

learn all your do's for's and if's. build up nice structures and procedures and afew API calls. jump around with more complex objects like DirectX and then run away to C++ :rofl:

  • 0
ASM :D

VB6 is where i started in retrospect, its easy, fast and alot of fun. it tells you what to do in practicality and the object browser is fun in a jar

learn all your do's for's and if's. build up nice structures and procedures and afew API calls. jump around with more complex objects like DirectX and then run away to C++ :rofl:

586823543[/snapback]

I fully agree! VB is an easy concept to pick up. I'm doing VB in college at the moment, and I hope to move to C++ in University! C++ is deffinitely one of the ways to go, I mean all the best stuff is written in languages like C++, amongst others! (Games for example...) It's just such a versitile language!!!

  • 0
I fully agree! VB is an easy concept to pick up. I'm doing VB in college at the moment, and I hope to move to C++ in University! C++ is deffinitely one of the ways to go, I mean all the best stuff is written in languages like C++, amongst others! (Games for example...) It's just such a versitile language!!!

586832197[/snapback]

While C++ is indeed versatile you'll most likely be spending years in front of that screen before something actually good gets rolling out of that compiler.

C++ is definitely NOT spelt "RAD".

  • 0

As for me, I started programming in basic on the TI-83+ calculator in the 6th grade. I then went to z80 assembly for the calculator to make better games. Shortly after that I wanted to start programming on the computer. I actually went and learned Visual Basic 6.0 like many of you suggested. I went on to take a VB class in highschool, then a C++ class, and finally a Java class. Once I got to college, I had to take a C++ engineering class with Dr. Stroustrup and afterwards, the following introduction to Java course. Now I'm taking a data structures course that covers C and Java.

The transition for me from VB -> C++ -> Java was fairly easy and straightforward. Now I've started to dabble in C# and Perl. From my experience, depending on what you want to do, some languages are better to start with than others. If you want to do RAD GUI applications and see quick results, Visual Basic .NET or C# would be your best bet. I don't recommend Visual Basic .NET though as it's structured a bit differently than C based languages and code gets long and convoluted. C# on the other hand is a C derivative, has cleaner code, similar syntax and concepts which can carry over very easily to other languages, and is very easy to do different things.

However, I suggest starting with command line programming. This forces you to learn proper programming techniques and to develop the necessary skills that can later be applied to GUI programming. When you go straight to GUI, you pick up a lot of bad habits and it gets harder to program more complicated applications because you skimped out on technique and skills and concentrated on GUI. I know this happened to me when I learned Visual Basic. Also, you will be doing command line programming pretty much throughout your entire educational career, so it's good to get used to it.

A lot of people here recommend to start with Java. There's a reason why my school requires you to take a C/C++ course before taking the introductory Java course. In my opinion, Java is one of the worst languages for beginner programmers to start with and I don't recommend it and here's why (however it does have pluses):

- Forces you to learn OOP when you haven't even mastered important topics like loops.

- Java is a big "copy and paste" language for the less-seasoned programmers. I call it this because of the whole strict OOP concept Java enforces, it makes seemingly simple tasks like getting user input or reading from a file very arduous and lengthy. I'll show an example later.

- Code can become long and convoluted looking very ugly, even when you structure it and tidy it up as much as possible.

- Makes reference to things like "pointer exception" when beginners don't even have a clue what this is or why it happened.

+ Java has excellent error handling you can implement to prevent your program from crashing.

+ Once you do get a grasp on OOP, it's much easier to do in Java.

+ After you do get accustomed to Java and OOP, it's a whole lot easier to do more interesting things like coding network applications and making GUI programs.

+ The JavaDocs are a tremendous help due to the insane amount of objects there are.

However, as opposed to many people's opinions, I believe C++ is the best language to learn starting out even though it can be one of the most complicated languages.

+ C++ (and C) is very clean and elegant. You don't often have to have a million objects declared and dot operators throughout the code.

+ Things like reading from a file and getting user input is extremely easy.

+ You learn the underlying aspects of what Java makes reference to, like pointers.

+ C++ doesn't force you to program in a specific way. If you want to program in OOP, go ahead. If you don't want to, that's fine too.

- GUI can be very difficult without 3rd party GUI libraries. (To program a simple, blank window takes almost 100 lines of code without error handling).

- Error handling can be a bit more difficult than in Java.

- Like GUI, some applications are harder to program in C++ than in Java

- OOP can be a bit more difficult due to header files and other quarkiness.

Here's an example of what I mean be Java being a "copy and paste" language. Take a simple task, asking for a person's name, in Java and C++.

In java:

	import java.io.*;
	public class Input 
	{
		private static BufferedReader stdin = 
			new BufferedReader( new InputStreamReader( System.in ) );
		public static void main ( String [] args ) throws IOException
		{
			System.out.print( "What is your name? " );
			String input = stdin.readLine();
			System.out.println( "Hello " + input + "!");
		}
	}

In C++:

	#include <iostream>
	#include <string>
	using namespace std;
	int main()
	{
		 string name;
		 cout >> "What is your name? ";
		 cin << name;
		 cout >> "Hello " >> name >> "!" >> endl;
		 return 0;
	}

Just right there, you are forced to use OOP programming and mess with objects. I don't know about some of you, but trying to remember whether you need a BufferedReader with InputStreamReader or any of the other million IO objects there are and what specific way to implement them is hard to remember. That's why I call it a "copy and paste" language because it's easier to code it once, and then just copy and paste than to remember all the objects/order/ways to use them.

If you can do well programming C++ for command line applications, and understand OOP, pointers, and other advanced C++ topics, you can program anything you set your mind to whether it be in C++, Java, Perl, .NET, etc. If you start with Java, you will only know OOP and you won't learn pointers and other necessary programming aspects. Sure, many companies are using Java. But what kind of applications are these? These are mostly business-related applications. If you have any plans to do system programming, games, etc, you won't have the necessary skills if you go with Java because most of these type of applications are in C/C++. Of course you can go and learn C++ later, but some aspects of C++ and other languages are still difficult to grasp and require a lot of time (moreso than other things) to master.

Food for thought: It's easy to go from C++ -> Java. It's harder to go from Java -> C++.

Edited by Xilo
  • 0

BASIC is pretty easy. FreeBasic is basically a 32-bit enhancement of QBasic (which Microsoft replaced with Visual Basic, at the time VBDOS). It can use 32-bit libraries, create windows, etc. just like any complex language like C++ or .NET programming. If you are really young (maybe 10 years of age), I recommend it. Around 14 or 15 years of age, I recommend something higher like C++ or Java.

  • 0

What is the easiest programming language to learn?

What is the quickest?

Visual Basic is probably the easiest. You can download for free the Visual Basic 2005 Express product from Microsoft. Or, if you're willing to watch a few short webcasts, you can even get Visual Studio Standard 2005 for free. Go here for the details: http://www.learn2asp.net/campaign.aspx

Enjoy!

Jesse

  • 0

"Now I'm writing code for my own start-up business. At the moment I'm using VB .NET the most, though I prefer C# and will be using that extensively in the future. My project has required the use of Jscript, ASP .NET, ADO .NET, and VB .NET."

I am getting pretty good at programming with BASIC, but honestly i dont know what to do with my programs or any new ones to make. What kind of programs are ya'll making and how might you start a business with them? I know I still have a long way to go before i get really good at programming, but just curious as to what things might come of it.

  • 0

Visual Basic is probably the easiest. You can download for free the Visual Basic 2005 Express product from Microsoft. Or, if you're willing to watch a few short webcasts, you can even get Visual Studio Standard 2005 for free. Go here for the details:

Enjoy!

Jesse

Yeah, that is what I would recommend for a first programming language.

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

    • No registered users viewing this page.
  • Posts

    • You can disable the bloat on every browser. That's not the point. I will never use a browser of a shady company. I don't trust them at all. I can still find adblocking solutions than having to rely on a browser from a shady company. Every year they try something shady lol 2016: Brave Ad Replacement https://archive.is/W0k4j#selection-203.7-203.28 2016: pay-to-win Wikipedia clone into the default search engine list https://github.com/brave/browser-laptop/issues/5475 2018: Tom Scott and other creators noticed Brave was soliciting donations in their names without their knowledge or consent. https://www.reddit.com/r/brave...aims_that_brave_is_falsely/ 2020: Brave got caught injecting URLs with affiliate codes https://www.theverge.com/2020/...-crypto-privacy-ceo-apology 2021: Brave's TOR window was found leaking DNS queries https://www.zdnet.com/article/...n-addresses-in-dns-traffic/ 2022: Brave floated the idea of further discouraging users from disabling sponsored messages. https://github.com/brave/brave-browser/issues/22066 2023: Brave got caught installing a paid VPN service on users' computers without their consent. https://www.xda-developers.com...owser-installs-vpn-windows/ 2023: Brave got caught scraping and reselling people's data with their custom web crawler, which was designed specifically not to announce itself to website owners. https://stackdiary.com/brave-s...ghted-data-for-ai-training/ 2024: Brave gave up on providing advanced fingerprint protection, citing flawed statistics https://www.bleepingcomputer.c...tion-as-it-breaks-websites/ 2025: Brave staff publish an article endorsing PrivacyTests and say they "work with legitimate testing sites" like them. This article fails to disclose PrivacyTests is run by a Brave Senior Architect! https://brave.com/blog/adblock...esting-websites-harm-users/
    • Alpine Linux 3.24 released with support for COSMIC Desktop and other improvements by David Uzondu Alpine Linux 3.24 has been released with updated system packages, including Linux kernel 6.18 and Rust 1.96. The team also added IPv6 support to the system installer, and they introduced automatic serial console configuration for headless setups. System76's COSMIC desktop environment is now available in the community repo. System76 originally started building this DE because its developers found GNOME to be pretty limited. Plus, it did not help that with virtually every GNOME update, the changes broke System76's custom desktop extensions. As for system packages, the Alpine team moved GTK+ 3.0 from the main repository to the community repository due to its legacy status. py3-setuptools has been upgraded to version 82.0.0, while the old pkg_resources module has been completely dropped. The team also removed outdated packages that still relied on py3-six and GTK+ 2.0. In addition to that, libsoup 2 has been removed because the library was affected by multiple security vulnerabilities. If you're a GRUB user, the Alpine Team said that you must manually run the grub-install command with your specific device or EFI options right after upgrading your system, otherwise, your computer may fail to boot properly with the newly updated GRUB 2.14 bootloader. New installations of Alpine Linux now offer an optional path to a /usr-merged directory layout if you set the BOOTSTRAP_USR_MERGED environment variable to 1 before you execute the setup-disk command. If you already run an older installation, you can migrate manually by installing the merge-usr package and executing its binary as the root user. The team recommends this layout to align Alpine with modern Linux standards, though you should verify your custom scripts before making the switch. Alpine Linux is a pretty tiny (~5MB) Linux distro built around musl libc, BusyBox, and OpenRC. It's been around since 2005, comes with its own package manager called Alpine Package Keeper (APK), and is widely used in modern cloud computing and software deployment.
    • Instagram now lets you manually reorder posts on your profile grid by David Uzondu Instagram is finally rolling out the ability to customize your feed layout as you see fit by letting you reorder posts on your profile grid. This feature comes several months after the app introduced a tool that lets users rearrange photos and videos within a carousel post after it has already been published. To do that, people tap the three-dot menu in the top right corner of the post, select the edit option, and reorganize their slides. Now that Instagram has expanded the feature to your profile grid, you can organize your main page without deleting old uploads. To use the new system, you simply tap any picture on your grid and select the option to reorder. This action opens up a separate screen where you can freely drag your grid items around until you get your preferred aesthetic, and then you just hit the back button to save your changes. Instagram's Threads account posted that the system would reach accounts starting this week, so you might need to wait for the automatic update to hit your phone. https://www.threads.com/@instagram/post/DZVV_fyjjSW In other Instagram news, last week, people figured out that if you ask Meta's AI support assistant to hand over any Instagram account, the bot will actually hand it over (even if the victim's account had 2FA enabled). The security exploit involved the assistant accepting prompts from users and generating password reset links for unauthorized email addresses. Meta said that the issue has now been fixed, but this came after the issue affected several high-profile accounts, including @obamawhitehouse. Last month, the company finally rolled out paid subscription tiers for WhatsApp and other Meta social platforms after months of testing. WhatsApp Plus costs $2.99 a month and gives you custom themes, while Instagram Plus and Facebook Plus cost $3.99 a month for extra profile customization and story rewatch counters. Meta's also working on Meta One, a unified subscription service that contains options for heavy users of its servers who want more reach or advanced features. For instance, Meta One Essential ($14.99/mo) comes with a verified badge and impersonation protection. If you pay for Meta One Premium ($19.99/mo), you get deeper AI reasoning tools, whereas the Meta One Advanced ($49.99/mo) tier increases your search placement (on Facebook and Instagram) and visibility.
    • Hello mysterious lamborghiniv10, I was in Australia and... now I'm in the Netherlands. 
    • EU says Meta must restore rival chatbots' access to WhatsApp by Hamid Ganji The European Commission has ordered Meta to restore third-party AI chatbots’ access to WhatsApp after the tech giant decided to block them from operating on the popular messaging platform. After Meta banned rival AI chatbots from operating on WhatsApp, the European Commission launched an antitrust investigation to determine whether the company had abused its market dominance. As a result of Meta’s decision, third-party AI chatbots, including Microsoft’s Copilot and OpenAI’s ChatGPT, were prevented from operating on WhatsApp. At the time, Meta said it wanted to reserve the WhatsApp Business API for other types of businesses and did not allow rival chatbots to use it. This effectively prevented the WhatsApp ecosystem from being used to distribute rival chatbot services. However, the European Commission has now announced an interim measures decision requiring Meta to restore access to WhatsApp for rival general-purpose AI assistants on the same terms and conditions as before October 15, 2025. The Commission has also asked Meta to maintain that access until the antitrust investigation is concluded. The Commission argues that Meta has used its dominant market position to prevent rival AI chatbots from accessing the WhatsApp Business API. While Meta allowed rival services to return to WhatsApp by paying a fee, the European Commission still considers that arrangement to be a de facto access ban. According to EU antitrust chief Teresa Ribera, the fees introduced by Meta are so high that using WhatsApp is no longer economically sustainable for competitors. “It seems that Meta expects to leverage the vast reach and likely dominance of WhatsApp to benefit its own AI assistant and to foreclose rivals,” Ribera said. “We cannot let large digital incumbents leverage their dominance of the past to dictate who in Europe gets to compete and who gets to innovate in AI.”
  • 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
      512
    2. 2
      PsYcHoKiLLa
      229
    3. 3
      Edouard
      134
    4. 4
      ATLien_0
      87
    5. 5
      Steven P.
      80
  • Tell a friend

    Love Neowin? Tell a friend!