+ Reply to Thread
Page 1 of 4 123 ... LastLast
Results 1 to 10 of 32
Like Tree2Likes

Thread: Pseudocode Tutorial: The Basics

  1. #1
    Join Date
    Aug 2006
    Posts
    11,209
    Blog Entries
    6
    Rep Power
    101

    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!
    herbelew and Gman like this.

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Shakmun Guest
    helpm me out with my project,I will be really grateful

  4. #3
    Void's Avatar
    Void is offline Programming Expert
    Join Date
    Jun 2006
    Posts
    410
    Rep Power
    23
    Is your project just Pseudocode?
    Void

  5. #4
    Join Date
    Aug 2006
    Posts
    11,209
    Blog Entries
    6
    Rep Power
    101
    Yeah give me some details and I will try to help you!

  6. #5
    wng
    wng is offline Newbie
    Join Date
    Feb 2008
    Posts
    2
    Rep Power
    0
    hey, this tutorial is excellent help with my assignment, thnx

  7. #6
    Join Date
    Aug 2006
    Posts
    11,209
    Blog Entries
    6
    Rep Power
    101

    Re: Pseudocode Tutorial: The Basics

    Welcome. Did you pass the assignment?

  8. #7
    Join Date
    Oct 2008
    Location
    everywhere but nowhere
    Posts
    7
    Rep Power
    0

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

  9. #8
    Join Date
    Sep 2008
    Location
    Australia
    Posts
    4,834
    Blog Entries
    10
    Rep Power
    51

    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!

  10. #9
    princecal is offline Newbie
    Join Date
    Jan 2009
    Posts
    1
    Rep Power
    0

    Re: Pseudocode Tutorial: The Basics

    need help with pseudocode assignment

  11. #10
    George is offline Newbie
    Join Date
    Mar 2009
    Posts
    2
    Rep Power
    0

    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 4 123 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Re: Pseudocode Tutorial: The Basics
    By hahahehe in forum General Programming
    Replies: 2
    Last Post: 08-15-2011, 08:36 AM
  2. Re: Pseudocode Tutorial: The Basics
    By rageoutfool in forum General Programming
    Replies: 3
    Last Post: 09-04-2010, 12:12 PM
  3. Re: Pseudocode Tutorial: The Basics
    By mkcrider in forum General Programming
    Replies: 1
    Last Post: 05-07-2010, 12:10 PM
  4. Re: Pseudocode Tutorial: The Basics - spawned question
    By charlote in forum General Programming
    Replies: 11
    Last Post: 03-08-2010, 06:22 PM
  5. Begginer In need of pseudocode tutorial help
    By jason007thomas in forum Introductions
    Replies: 9
    Last Post: 11-07-2008, 05:03 AM

Tags for this Thread

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