View unanswered posts | View active topics It is currently Sun May 19, 2013 7:21 pm




Post new topic This topic is locked, you cannot edit posts or make further replies.
Search for:
 [ 13 posts ] 
 [need] Guides on elementary programming 
Author Message
Nessus
User avatar

Joined: December 2008
Posts: 2559
Location: East Viperz Home
Gender: Male
Post [need] Guides on elementary programming
Hi there,

In two months or so I'm going to have a test of sorts. It doesn't require some particular knowledge, but primitive programming skills might give an advantage (yes, it's allowed to ask for help). It doesn't require more than knowing basic phrases like "if", "look" etc. Can someone give me a good guide on this topic? I can't find something elaborate on this subject and I hoped someone has one.

Thanks in advance, Stargazer

_________________
Subigo Inimicus!


Tue Dec 07, 2010 3:33 am
Profile
Cocky Canard
User avatar

Joined: January 2009
Posts: 5777
Location: Bed
Gender: Male
Post Re: [need] Guides on elementary programming
Computer language? Which one? There are (e.g.) plenty of free BASIC interpreters out there.

_________________
"Any human anywhere will blossom in a hundred unexpected talents and capacities simply by being given the opportunity to do so."
- Doris Lessing

Jereth Magas, Gothsylvania Minister of Unnatural Resources.


Tue Dec 07, 2010 8:06 am
Profile WWW
Nessus
User avatar

Joined: December 2008
Posts: 2559
Location: East Viperz Home
Gender: Male
Post Re: [need] Guides on elementary programming
To tell the truth, I don't know :feel stupid:... I need the very very primitive beginning...

_________________
Subigo Inimicus!


Tue Dec 07, 2010 9:12 am
Profile
Cocky Canard
User avatar

Joined: January 2009
Posts: 5777
Location: Bed
Gender: Male
Post Re: [need] Guides on elementary programming
Nah, not stupid. I you don't know then you don't know. BASIC is a simple language that should help you out, though purists would slap my wrists as its considered a thing that lets you pick up bad habits!

http://en.wikipedia.org/wiki/BASIC & http://en.wikipedia.org/wiki/List_of_BASIC_dialects_by_platform#Microsoft_Windows that list free as well as commercial versions (I'm presuming you use MS Windows.)

_________________
"Any human anywhere will blossom in a hundred unexpected talents and capacities simply by being given the opportunity to do so."
- Doris Lessing

Jereth Magas, Gothsylvania Minister of Unnatural Resources.


Tue Dec 07, 2010 11:35 am
Profile WWW
Nessus
User avatar

Joined: January 2008
Posts: 3032
Location: Dublin
Gender: Male
Post Re: [need] Guides on elementary programming
Well it really is rather language specific as the paradigm a language is written for will change how certain things are handled but....

Learn about "if/else" statements and how they can be used to control program flow. Learn about "while", "do while" and "for" looping to understand how to do repetitive tasks. Work out how your test will be handling variables and then look at how arrays work in relationship to that.


Tue Dec 07, 2010 6:01 pm
Profile YIM WWW
Cania
User avatar

Joined: May 2010
Posts: 1637
Location: Suburban Chicago
Gender: Female
Post Re: [need] Guides on elementary programming
Arquinsiel wrote:
Well it really is rather language specific as the paradigm a language is written for will change how certain things are handled but....

Learn about "if/else" statements and how they can be used to control program flow. Learn about "while", "do while" and "for" looping to understand how to do repetitive tasks. Work out how your test will be handling variables and then look at how arrays work in relationship to that.


OMG this sounds like the conversation I was having with my friend that I went to the gig with last night (while I was drunk mind you). He's gonna be teaching me HTML and some other stuff next year, and give me some sort of overview of COBOL (that will be interesting, haha). And he talked about those if/else statements (not sure if that was a reference to COBOL or another language but it was discussed... or something to that effect, remember, I was drunk).

_________________
Aislinn Diabla LaMort


Tue Dec 07, 2010 6:14 pm
Profile WWW
Nessus
User avatar

Joined: December 2008
Posts: 2559
Location: East Viperz Home
Gender: Male
Post Re: [need] Guides on elementary programming
Ok. I think Arquinsiel has got the closest to what I need. But thanks for everyone anyway

_________________
Subigo Inimicus!


Wed Dec 08, 2010 1:57 am
Profile
Cocky Canard
User avatar

Joined: January 2009
Posts: 5777
Location: Bed
Gender: Male
Post Re: [need] Guides on elementary programming
For a bit of fun, try this dinky little visual flow chart programming environment: http://www.emu8086.com/source_codes/Flow_Chart_301_BIN.zip It allows you to see what is going on and get a grip of this procedural programming thing.

_________________
"Any human anywhere will blossom in a hundred unexpected talents and capacities simply by being given the opportunity to do so."
- Doris Lessing

Jereth Magas, Gothsylvania Minister of Unnatural Resources.


Wed Dec 08, 2010 2:03 am
Profile WWW
Nessus
User avatar

Joined: December 2008
Posts: 2559
Location: East Viperz Home
Gender: Male
Post Re: [need] Guides on elementary programming
LS, it doesn't work for some reason....

_________________
Subigo Inimicus!


Wed Dec 08, 2010 6:13 am
Profile
Cocky Canard
User avatar

Joined: January 2009
Posts: 5777
Location: Bed
Gender: Male
Post Re: [need] Guides on elementary programming
Stargazer wrote:
LS, it doesn't work for some reason....


Download blocked or not unzipped?

_________________
"Any human anywhere will blossom in a hundred unexpected talents and capacities simply by being given the opportunity to do so."
- Doris Lessing

Jereth Magas, Gothsylvania Minister of Unnatural Resources.


Thu Dec 09, 2010 2:08 am
Profile WWW
Nessus
User avatar

Joined: December 2008
Posts: 2559
Location: East Viperz Home
Gender: Male
Post Re: [need] Guides on elementary programming
Downloaded it and unzipped. It says it can't run some dll file (don't remember the exact name)

_________________
Subigo Inimicus!


Thu Dec 09, 2010 2:10 am
Profile
Cocky Canard
User avatar

Joined: January 2009
Posts: 5777
Location: Bed
Gender: Male
Post Re: [need] Guides on elementary programming
Might be a Visual Basic 6.0 "DLL" file, try here to download it, if so.

_________________
"Any human anywhere will blossom in a hundred unexpected talents and capacities simply by being given the opportunity to do so."
- Doris Lessing

Jereth Magas, Gothsylvania Minister of Unnatural Resources.


Thu Dec 09, 2010 2:24 am
Profile WWW
Maladomini
User avatar

Joined: May 2004
Posts: 551
Location: England
Gender: None specified
Post Re: [need] Guides on elementary programming
I found Swaroop C H's 'A Byte of Python' to be very useful in this - a lot of programming language tutorials explain the language on the basis that you're migrating from another language already. ABoP explains the programming concepts as it goes, and it has the bonus of teaching you Python; very handy.

http://www.swaroopch.com/notes/Python

HTH.

_________________
There are many forms of bliss more satisfying than ignorance.


Thu Dec 09, 2010 2:40 am
Profile WWW
Display posts from previous:  Sort by  
This topic is locked, you cannot edit posts or make further replies.   [ 13 posts ] 

Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by STSoftware for PTF.