Flowgorithm Per Mac



To get started on your great and simple programming experience, go to any web browser and type in http://www.flowgorithm.org/ and the page should open up saying “Welcome to the Flowgorithm Homepage!” After you have seen that, take your time and read what is on they Homepage. After you have got more of an understanding about what Flowgorithm is, click the “Download” tab on the top. Once you do that, you will see “Download Flowgorithm 2.15.2, and from there you will have to click “Download (Windows)”. If you do not have windows (which is a software that runs on most computers), then before you download the program, download windows by going to https://www.microsoft.com/en-us/software-download/windows10. During some points of the process, you computer might ask if you would like the application to make changes to you computer, and you will have to click yes. Once you have clicked the button to download flowgorithm, you will see the application go to the bottom of your screen or the web browser. When it has completed downloading, and it does not show anymore signs of loading, go ahead by clicking the arrow pointing up. After that is done, a few options will pop up, and you will have to select open. From there, either you folder manager will pop up, or the actual application will open up and then you will finally be all set to go to start learning about flowgorithm!

Q1. Add 10 and 20

Flowgorithm for mac

Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube. To solve this problem we will take a variable sum and set it to zero. Then we will take the two numbers 10 and 20 as input. Next we will add both the numbers and save the result in the variable sum i.e., sum = 10 + 20.

Machine

To solve this problem we will take a variable sum and set it to zero. Then we will take the two numbers 10 and 20 as input. Next we will add both the numbers and save the result in the variable sum i.e., sum = 10 + 20. Finally, we will print the value stored in the variable sum.

Algorithm (in simple English)

  • Initialize sum = 0 (PROCESS)
  • Enter the numbers (I/O)
  • Add them and store the result in sum (PROCESS)
  • Print sum (I/O)

Flowchart

Q2. Find the sum of 5 numbers

In this question we are asked to find the sum of 5 numbers. So, we will take two variables - sum and count and set both of them to zero. The sum variable will store the result while the count variable will keep track of how many numbers we have read.

To solve this problem we will use the concept of loop. In loop or iterative operation, we execute some steps repeatedly as long as the given condition is TRUE. In this case we will keep reading the input till we have read 5 numbers.

So, we first initialize sum and count to zero. Then we will take the input and store it in a variable n. Next we will add the value stored in n to sum and save the answer in sum.

i.e., sum = sum + n

Then we will increment count by 1 and check if count is less than 5. If this condition is TRUE then we will take another input. If the condition is FALSE then we will print the value stored in variable sum.

Algorithm (in simple English)

  1. Initialize sum = 0 and count = 0 (PROCESS)
  2. Enter n (I/O)
  3. Find sum + n and assign it to sum and then increment count by 1 (PROCESS)
  4. Is count < 5 (DECISION)
  5. if YES go to step 2
    else
    Print sum (I/O)

Flowchart

Q3. Print Hello World 10 times

Flowgorithm For Mac

This problem is also solved using the loop concept. We take a variable count and set it to zero. Then we print 'Hello World' and increment count by 1.

i.e., count = count + 1

Flowgorithm Per Mac

Next we check if count is less than 10. If this is TRUE then we again print 'Hello World' and increment the variable count. On the other hand if the condition if FALSE then we will stop.

Algorithm (in simple English)

  1. Initialize count = 0 (PROCESS)
  2. Print Hello World (I/O)
  3. Increment count by 1 (PROCESS)
  4. Is count < 10 (DECISION)
  5. if YES go to step 2
    else Stop

Flowchart

Q4. Draw a flowchart to log in to facebook account

This problem can be solved in many ways so, we will encourage you to think and draw a flowchart for this problem using your imagination.

Flowgorithm Per Mac

To log in to facebook account we first enter the facbook URL www.facebook.com in our browser like Google, Firefox, Safari, Internet Explorer etc. This request is sent to the facebook server and it responds by sending us the home page of facebook.

Next, we enter our registered Email ID and Password and click the Login button.

Flowgorithm

Flowgorithm Download

Then our login credential is checked. If it is correct, we are show our profile. On the other hand, if the login credential is wrong then an error occurs and we are prompted to re-enter our Email ID and Password.

Flowgorithm Per Mace

Algorithm (in simple English)

  1. Enter www.facebook.com in your browser. (I/O)
  2. facebook Home page loads (PROCESS)
  3. Enter your Email ID and Password (I/O)
  4. Is Email ID and Password Valid (DECISION)
    if NO then
    Log in error (PROCESS)
    go to step 3
    else
    Display facebook Account (I/O)
    Stop

Flowchart

Note!
As there are many ways to solve a given problem so there are many ways to draw a flowchart.