Connect with Facebook Lost Password?


Go Back   CodeCall Programming Forum > Software Development > Tutorials

Tutorials Programming Tutorials - Post your tutorials here!

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-23-2006, 07:58 AM
TcM's Avatar   
TcM TcM is offline
Code Warrior
 
Join Date: Aug 2006
Posts: 9,798
Blog Entries: 6
Rep Power: 82
TcM is a name known to allTcM is a name known to allTcM is a name known to allTcM is a name known to allTcM is a name known to allTcM is a name known to all
Exclamation Pseudocode Tutorial: The Basics

Introduction:-

Well a user here asked me to make a pseudocode Tutorial so to help some newbies, and well here it is! I made a very brief tutorial for you to understand!

What is Pseudocode?
Pseudocode is a short hand way of describing a computer program. Rather than use the specific syntax of a computer language, more general wording is used. Using pseudocode, it is easier for a non-programmer to understand the general workings of the program.

Why use it?
Well, This is usually made before a programmer starts making the actual program with Syntax, So as just to have the idea of the program. This should be written to the extend than every person, even without knowing any programming should still understand because it should be like reading some bullets points in simple and understandable language ( like English )

Example:-

Ok, so as I am confident in VB 6.0 I will show you a piece of code in VB and then make it in pseudocode! The VB code will not be understood by everyone, but the pseudocode Yes! it SHOULD be understood!

VB Code:-

Code:
Dim Num1 As Integer
Dim Num2 As Integer
Num1 = Text1.Text
Num2 = Text2.Text
If Num1 > Num2 Then MsgBox "Num1 is Greater than Num2"
If Num1 < Num2 Then MsgBox "Num2 is Greater than Num1"
If Num1 = Num2 Then MsgBox "Num1 and Num2 are equal"
Pseudocode:-

Code:
Make Num1 as the text in Text1
Make Num2 as the text in Text2
if Num1 is greater than Num2 then "Num1 is greater than Num2"
else if Num1 is smaller than Num2 then "Num2 is Greater then Num1"
else if Num1 is equal to Num2 then "Num1 and Num2 are equal"
As you can see the pseudocode is very close to the Actual VB Code thats because nowadays we are trying to make the programming languages as close as possible to our natural language! well as you can see at first there was the Machine Code that you had to program with Binary ( 1s and 0s ) then the Assembly was created and it had the Mnemonics like ADD and such, you see it had words that we could read then the programming languages were always updated and made more close to our natural langauge ( a language that we can speak ) And its said that in a while we will be able to program in pseudocode but for now its a little far, but by time we'll see!

Ending:-
Well I hope that you understood a little more what pseudocode is!!
If you have any questions/problems/feedback pls post here and I will sureley Help you!
So I'm waiting for your feedback
Ow and if you want me to make you some tutorials request what you want and I will see what I can do! I will be happy making some tuts here!

Tcm9669!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 10-13-2006, 12:05 PM
Newbie
 
Join Date: Oct 2006
Posts: 8
Rep Power: 0
Shakmun is an unknown quantity at this point
Default

helpm me out with my project,I will be really grateful
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-13-2006, 02:28 PM
Void's Avatar   
Programming Expert
 
Join Date: Jun 2006
Posts: 410
Rep Power: 14
Void is on a distinguished road
Default

Is your project just Pseudocode?
__________________
Void
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 10-14-2006, 12:56 PM
TcM's Avatar   
TcM TcM is offline
Code Warrior
 
Join Date: Aug 2006
Posts: 9,798
Blog Entries: 6
Rep Power: 82
TcM is a name known to allTcM is a name known to allTcM is a name known to allTcM is a name known to allTcM is a name known to allTcM is a name known to all
Default

Yeah give me some details and I will try to help you!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-21-2008, 09:23 AM
wng wng is offline
Newbie
 
Join Date: Feb 2008
Posts: 2
Rep Power: 0
wng is an unknown quantity at this point
Default

hey, this tutorial is excellent help with my assignment, thnx
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 06-06-2008, 01:44 PM
TcM's Avatar   
TcM TcM is offline
Code Warrior
 
Join Date: Aug 2006
Posts: 9,798
Blog Entries: 6
Rep Power: 82
TcM is a name known to allTcM is a name known to allTcM is a name known to allTcM is a name known to allTcM is a name known to allTcM is a name known to all
Default Re: Pseudocode Tutorial: The Basics

Welcome. Did you pass the assignment?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 10-25-2008, 07:40 PM
jason007thomas's Avatar   
Newbie
 
Join Date: Oct 2008
Location: everywhere but nowhere
Posts: 7
Rep Power: 0
jason007thomas is an unknown quantity at this point
Default Re: Pseudocode Tutorial: The Basics

Whats up TcM I just joined this site and I need to find help with my pseudocode
Ironicly my next class next semester is VB but im just trying to be as good as i can be as far as program design and logic right now!!!

my class only meets one time a week so its hard to get my practice in
it seems like we focus more on the vocabulary then actualy designing the program itself.

if you can help i would really apreciate it

hit me up
thank you!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 10-25-2008, 10:01 PM
Brandon W's Avatar   
Code Warrior
 
Join Date: Sep 2008
Location: Australia
Age: 16
Posts: 2,807
Blog Entries: 5
Rep Power: 27
Brandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to all
Send a message via MSN to Brandon W
Default Re: Pseudocode Tutorial: The Basics

Wow! I never knew that there was code like that I still couldn't program in it, too confusing for me. I like the original
__________________
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation
Quote:
Originally Posted by WingedPanther View Post
Mrs.Panther refers to me as her "British Bunny".
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 01-20-2009, 06:07 PM
Newbie
 
Join Date: Jan 2009
Posts: 1
Rep Power: 0
princecal is an unknown quantity at this point
Default Re: Pseudocode Tutorial: The Basics

need help with pseudocode assignment
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 03-24-2009, 10:59 PM
Newbie
 
Join Date: Mar 2009
Posts: 2
Rep Power: 0
George is an unknown quantity at this point
Default Re: Pseudocode Tutorial: The Basics

Hi buddy,

Would like to have more pseudo code example, would like to know that whether you have any in hands and willing to send it over to me as reference and study materials? I would like to have as much as i can get.


Warmest regards,

George.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Tutorial: C# Hello World Jordan CSharp Tutorials 15 10-16-2008 10:44 PM
VB 6.0: Tutorial, Explaining the VB 6.0 GUI TcM VB Tutorials 1 05-18-2007 10:25 AM
John's Java Tutorial Index John Java Tutorials 0 01-11-2007 03:05 PM
JSP Tutorial encoder JavaScript and CSS 0 05-26-2006 05:31 AM


All times are GMT -5. The time now is 08:11 AM.

Freelance Jobs

XML/XSL: Need code for Book with Chapers using XML
Create an XML file for a book of your creation, and a basic CSS file that will format it to display ...
Earn: $40.00


C++/C: Simple firework cue sequencer
What I require is a rework of a simple cue sequencer. I have a piece of hardware (an Arduino boar...
Earn: $50.00


HTML/XHTML: Menu Rework - ASCIIBin
I'm placing this in the HTML/XHTML section of the Freelance site but you are not limited to HTML. Wh...
Earn: $20.00



CodeCall Goal

Goal #1: 1,000 Blogs
Goal #2: 1,000 Wiki Pages
Goal #3: 300,000 Posts
Goal #4: 20,000 Threads
Done: 30%, 23%, 55%, 75%

Ads