Page 1 of 1
Computer Languages
Posted: Mon Aug 02, 2004 2:16 pm
by Parrakarry
What computer languages do you know?
Personally, I know HTML, Python, some C/C++, and of course I can do binary, hex, octal, all that good stuff, although it's easier to use a translating device.
Posted: Mon Aug 02, 2004 7:29 pm
by Ace Mercury
I started out with Pascal (or, Hypercard, if you want to go even further into the past), and then moved onto C. I can read a bit of BASIC and assembly; stuff I learned while 'studying' for the ACSL. I can make HTML pages in notepad that would make an six-year-old awestruck.
I guess that's it.
Posted: Mon Aug 02, 2004 7:34 pm
by DarthButcher
A pretty good knowledge of basic HTML, a little tiny non-basic. That's it. Heck, I am only 12! Some binary too.
Where is the idiot running to? Why to
Nintendo Mania of course. Just follow him for the time of your life.
Posted: Mon Aug 02, 2004 7:36 pm
by Perrin Aybara
A know a lot of the standard languages... With my degree in comp sci, I'm pretty well prepared to work with any language, so long as I learn a little about each one's particular structure and syntax.
But I've used Q Basic, Visual Basic, Hypercard (I loved Hypercard), C, C++, Java (I loathe Java), Pearl, Prolog, and probably some other ones.
I love programming in VB for fun.-jay
Posted: Mon Aug 02, 2004 8:39 pm
by Valentine
Im just going into the third year of my comp sci degree at the end of summer.
I know a bit of Visual Basic, Basic, C, Java and XHTML but so far the main languages we've been using are Ada 95 and Haskell.
Posted: Tue Aug 03, 2004 1:04 am
by Parrakarry
Posted: Tue Aug 03, 2004 10:24 pm
by homer
I'm into Binary, I know a little C++.
Posted: Tue Aug 03, 2004 11:24 pm
by imported_Andrew
HTML and UBB. [img]tongue.gif[/img]
Oh, and right with Calvin and Hobbes, Foxtrot is tied for the best comic ever. The tech references are awesome, no other comic has stuff like that.
Oh, and what's the point of knowing binary? Can you actually program anything with it? Isn't that like, typing the letter "A" to the computer is "0000000001" or whatever?
Posted: Wed Aug 04, 2004 6:26 am
by Heroine of the Dragon
You're supposed to actually
know computer language? *whispers* Don't tell Shane... but I can't even work through my "html for faeries" book!!!
Posted: Wed Aug 04, 2004 2:26 pm
by mango
I know HTML and javascript, if you consider those languages. I also know Python and Visual Basic.
Posted: Mon Sep 06, 2004 10:48 am
by F-ZERO_X
Posted: Mon Sep 06, 2004 11:43 am
by Masamune
I've mostly used C++, I know a bit of Java, Visual Basic (I'd be shocked if I remembered any), and right now I'm working on PHP.
Posted: Mon Sep 06, 2004 12:14 pm
by Cham Zord
I know HTML and I'm learning both Visual Basic 6.0 and C++.
Posted: Sun Sep 12, 2004 6:48 pm
by UserGoogol
Binary isn't really a programming language per se. It's a system for encoding numbers. It's useful because everything in computers is stored in binary, and as a result, knowing it lets you get a little lower level.
The machine code of a programming language is, however, stored in binary. You see, programs are stored in memory, and the CPU reads the program to know what to do. Of course, even people who program the most low-level of code usually don't memorize the actual binary numbers which represent the commands. Instead, they use assembly, which consists of a series of mnemonic devices.
For example, on a hypothetical machine, a program which loads two numbers from memory, adds them, and loads the answer back into memory might look something like this:
</font><blockquote>code:</font><hr /><pre style="font-size:x-small; font-family: monospace;">DLOD #127
MOV MX AX
DLOD #128
MOV MX BX
ADD
MOV DX MX
ULOD #129</pre>[/QUOTE]And each word would, in the final machine code, be replaced by a number represented in binary.