Language Quesition

Buildology

New Member
Joined
Dec 27, 2008
Messages
25
I would like to know if any program languages are easier the Visual Basic
i.e. Cobalt or something.
I am very new to this and would appreciate any information
Thanks
Bill
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
It's probably subjective :) A better question might be what your goal is in learning a language. Visual basic comes with a fairly easy to use set of built-in objects which makes it good for rapid development (especially forms and data connectivity). You can get a lot done quickly with an IDE such as Visual Studio. I've seen some .NET environments for development on the web also. Other languages are better in other circumstances though - if you're going to focus on web development you'd want to learn ASP.NET or PHP. Once you get comfortable with one language, much of the basics is going to transfer to any language you end up working with the most.
 
Upvote 0
Hi Alexander
Thanks for the reply
I understand what you mean about language in general.
but,
What does Visual Studio do and what is IDE stand for.
Thanks for the help.
Bill
 
Upvote 0
Bill

There might be a computer language called 'Cobalt' but the last time I looked at the Periodic table that was the name of an element in it.

Perhaps you mean Cobol.:)

As for IDE, in this context, it normally means/stands for Integrated Development Environment.
 
Upvote 0
IDE's -- "software to help you write software". Generally, good help files, compilation routines, debugging tools, graphical interfaces to help you with typical programming tasks - perhaps all the way up to version control and sophisticated tools for distribution.

In other words, you can write your code with Notepad - but when you need to get it done for a living, a whole barrage of development tools is available to assist you do it more quickly and effectively.

At any rate, for beginners, better to learn the basics of structured code and object-oriented design - a lot of stuff that will come in handy for you as you progress...(a journey of a thousand miles begins with a single step...)...I started out with VB, but there's many choices and all have their strengths and weaknesses. (I'm actually still just using VB mostly - but I've dithered in Java and C and right now I'm in a class using PHP with interactive web pages). COBOL is interesting - I believe the stats make it still the most common language in use today, but because there's so much out there still running it. It's not the language new programmers are are learning so much...for better or worse...

Alex
 
Upvote 0
Alex

What stats make you think COBOL is the most common language in use?:eek:

I've never, ever used it and have been programming for more than 20 years.

The only person I know that had exposure to it was my elder brother who learned it at uni, and looking at his books it wasn't too pretty.:)
 
Upvote 0
See link below under how widely used is COBOL - also a lot of other interesting factoids - the wikipedia article seems interesting too (and funny). I don't know a scrap of COBOL myself. What's the market for COBOL programmers still today - I have no idea. There were still millions of them in 2002 and there must be many still. The only experienced COBOL programmer I ever met quite liked it... Anyway, the point is not that it is being learned, taught, or used for new software (I've only met one person who was actually learning COBOL), but that it is still the language in which a great deal of existing software is written in the business world. I was quite surprised to hear this myself. Any recent stats out there? Alex

http://www.csis.ul.ie/COBOL/Course/COBOLIntro.htm
 
Upvote 0
Alex

I can quite imagine that there is plenty of COBOL code still out there, mostly in legacy systems I imagine.

And it's probably still there because doesn't want/see a requirement to update eg cost, laziness, obstinance etc.:)

As for my comment on it being 'ugly' I think that was based on how strictly everything had to be structured.

Well it looked that way to me anyway.:eek:
 
Upvote 0
I thought the same from the little I've seen of it...but beauty is in the eye of the beholder? I've always thought that every language (or type of language) has its own standards for what makes well-written code. All in all, COBOL is verbose, and probably requires more code.

The standard "hello-world" in COBOL:
Code:
      IDENTIFICATION DIVISION.
      PROGRAM-ID. HELLO-WORLD.
      PROCEDURE DIVISION.
      MAIN.
          DISPLAY 'Hello, world.'.
          STOP RUN.

In VB.NET:
Code:
Imports System.Console

Class HelloWorld

    Public Shared Sub Main()
        WriteLine("Hello, world!")
    End Sub

End Class


In Python (simplicity is a virtue here):
Code:
print "Hello, World!"

Alex
The Hello World Collection
 
Upvote 0

Forum statistics

Threads
1,225,382
Messages
6,184,640
Members
453,248
Latest member
levi_15

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top