Skip to content
View RubidiaRubio's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report RubidiaRubio

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Learning about Pseudocode Learning about Pseudocode
    1
    What is pseudocode? Pseudocode, in the simplest explanation, is a list of instructions to solve a coding problem. Pseudocode needs to make sense for our human brain later that pseudocode can be written in code so the computer can understand the instructions written. 
    2
    
                  
    3
    Pseudocode is quite a useful practice for beginner programmers to help simplify a coding problem. At some point during interviews you will be given a coding problem and asked to pseudocode a solution. This is basically to show how well you can organize and communicate your thought process with the people you will potentially be working with.
    4
    
                  
    5
    A good way to start practicing pseudocode is to write detail step-by-step instructions of everyday tasks. Let's practice writing the steps on how to make a PB&J sandwich, remember to be as detailed as possible: from gathering ingredients and utensils to applying PB&J on each slice of bread. I came up with 8 steps to this task, you probably came up with more or less and that is OK. The answer does not need to be right, pseudocoding is just a way to gather your thoughts and organize your solution.