Suggested Answer
The flowchart for finding the sum of even numbers is as attached.What is a flowchart?A flowchart is a picture of the separate steps of a process in sequential order.Write an algorithm for finding the sum of even numbers.Step 1. StartStep 2. Declare numeric variables i, n and sum.Step 3. Initialize sum = 0.Step 4. Input upper limit says n to calculate the sum of even numbers.Step 5. Iterate through even numbers using for loop from 2 to n and increment by 2 on each iteration. such as [tex]for(i=2; i < =n; i+=2).[/tex]compute [tex]sum = sum + i.[/tex]repeat step 5Step 6. Print sumStep 7. EndThus, the flowchart for finding the sum of even numbers from 2 to n is attached.To know more about flowcharts:https://brainly.com/question/6532130#SPJ1