Computer Languages
- Parrakarry
- Member
- Posts: 10680
- Joined: Sun Apr 08, 2001 1:00 am
- Been thanked: 1 time
- Contact:
Computer Languages
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.
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.
Video Gamerz Network boards will be back up shortly after a change of hosting. Thanks for not caring.
<a href=\"http://www.vgf.com/cgi-bin/ubb/ubbcgi/u ... 352#000005\" target=\"_blank\">Play the PC Forum Caption Contest damnit.</a>
<a href=\"http://www.vgf.com/cgi-bin/ubb/ubbcgi/u ... 352#000005\" target=\"_blank\">Play the PC Forum Caption Contest damnit.</a>
- Ace Mercury
- Member
- Posts: 23140
- Joined: Mon Jun 05, 2000 1:00 am
- DarthButcher
- Member
- Posts: 2942
- Joined: Thu Sep 04, 2003 1:00 am
- Location: In Our Hearts & Minds
- Been thanked: 1 time
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.
Where is the idiot running to? Why to Nintendo Mania of course. Just follow him for the time of your life.
- Perrin Aybara
- Member
- Posts: 12700
- Joined: Mon Apr 26, 1999 1:54 pm
- Location: Alone....so terribly alone... Some... where... ou
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
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
- Valentine
- Member
- Posts: 7185
- Joined: Sun Dec 08, 2002 2:00 am
- Location: Suppin' Green Tea
- Parrakarry
- Member
- Posts: 10680
- Joined: Sun Apr 08, 2001 1:00 am
- Been thanked: 1 time
- Contact:
Video Gamerz Network boards will be back up shortly after a change of hosting. Thanks for not caring.
<a href=\"http://www.vgf.com/cgi-bin/ubb/ubbcgi/u ... 352#000005\" target=\"_blank\">Play the PC Forum Caption Contest damnit.</a>
<a href=\"http://www.vgf.com/cgi-bin/ubb/ubbcgi/u ... 352#000005\" target=\"_blank\">Play the PC Forum Caption Contest damnit.</a>
- imported_Andrew
- Member
- Posts: 0
- Joined: Wed Dec 31, 1969 8:00 pm
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?
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?
- Heroine of the Dragon
- Administrator
- Posts: 44841
- Joined: Sun Jul 30, 2000 1:00 am
- Location: ǝlod ɥʇnos ǝɥʇ ɟo ɥʇɹou
- Has thanked: 807 times
- Been thanked: 1149 times
- Contact:
-
- Member
- Posts: 1120
- Joined: Wed Jul 10, 2002 1:00 am
- Location: Nowhere
- Contact:
- Masamune
- Member
- Posts: 4931
- Joined: Sun Aug 13, 2000 1:00 am
- Location: Indiana
- Contact:
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.
...These are the magical words that the ********* has created himself! Don\'t steal them!
<a href=\"http://www.*********.com\" target=\"_blank\">Hitchhiker\'s Guide to Video Games</a>
<a href=\"http://www.*********.com\" target=\"_blank\">Hitchhiker\'s Guide to Video Games</a>
-
- Member
- Posts: 4024
- Joined: Tue May 23, 2000 1:00 am
- Location: Greater Boston Area
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.
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.