+ Reply to Thread
Page 1 of 2
1 2 LastLast
Results 1 to 10 of 12

Thread: Pseudocode Tutorial: The Basics

  1. #1
    TcM
    TcM is offline
    Code Warrior TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM's Avatar
    Join Date
    Aug 2006
    Posts
    11,461
    Blog Entries
    6

    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!

  2. #2
    Newbie Shakmun is an unknown quantity at this point
    Join Date
    Oct 2006
    Posts
    8
    helpm me out with my project,I will be really grateful

  3. #3
    Programming Expert Void is on a distinguished road Void's Avatar
    Join Date
    Jun 2006
    Posts
    410
    Is your project just Pseudocode?
    Void

  4. #4
    TcM
    TcM is offline
    Code Warrior TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM's Avatar
    Join Date
    Aug 2006
    Posts
    11,461
    Blog Entries
    6
    Yeah give me some details and I will try to help you!

  5. #5
    wng
    wng is offline
    Newbie wng is an unknown quantity at this point
    Join Date
    Feb 2008
    Posts
    2
    hey, this tutorial is excellent help with my assignment, thnx

  6. #6
    TcM
    TcM is offline
    Code Warrior TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM's Avatar
    Join Date
    Aug 2006
    Posts
    11,461
    Blog Entries
    6

    Re: Pseudocode Tutorial: The Basics

    Welcome. Did you pass the assignment?

  7. #7
    Newbie jason007thomas is an unknown quantity at this point jason007thomas's Avatar
    Join Date
    Oct 2008
    Location
    everywhere but nowhere
    Posts
    7

    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!!!

  8. #8
    Code Warrior Brandon W is a name known to all Brandon W is a name known to all Brandon W is a name known to all Brandon W is a name known to all Brandon W is a name known to all Brandon W is a name known to all Brandon W's Avatar
    Join Date
    Sep 2008
    Location
    Australia
    Age
    16
    Posts
    4,824
    Blog Entries
    10

    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
    Sorry if I don't post as often as I did, I'll try to get here as much as possible! I'm working my bum off to get this scholarship and other stuff!

  9. #9
    Newbie princecal is an unknown quantity at this point
    Join Date
    Jan 2009
    Posts
    1

    Re: Pseudocode Tutorial: The Basics

    need help with pseudocode assignment

  10. #10
    Newbie George is an unknown quantity at this point
    Join Date
    Mar 2009
    Posts
    2

    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.

+ Reply to Thread
Page 1 of 2
1 2 LastLast

Thread Information

Users Browsing this Thread

There are currently 2 users browsing this thread. (0 members and 2 guests)

     

Similar Threads

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

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts