Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2025 Foundation Course
NEET 2025 Foundation Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
2.2k views
in Principles of Programming and Problem Solving by (29.6k points)
closed by

Make a flow chart using the given labelled symbols, for finding the sum of all even numbers upto ‘N’

OR

Write an algorithm to accept an integer number and print the factors of it.

1 Answer

+1 vote
by (29.8k points)
selected by
 
Best answer

Draw flowchart in any of the following order 

e, c, d, f, i, h, a, b, g 

e, d, c, f, i, h, a, b, g 

e, c, d, a, f, i, h, b, g 

e, d, c, a, f, i, h, b, g

  • Step 1: Start 
  • Step 2: Input n 
  • Step 3: i = I 
  • Step 4: if i <= n/2 then repeat step 5 & 6 
  • step 5: if n % i == 0 print i 
  • Step 6: i = i + I 
  • Step 7: Stop

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

...