CBSE Class 11 Computer Science Question 29 of 42

Practice Paper — Question 1

Back to all questions
1
Question

Question 26

Draw a flow chart to print even numbers from 2 to 10 using the loop approach and provide its algorithm.

Answer

Flowchart:

Draw a flow chart to print even numbers from 2 to 10 using the loop approach and provide its algorithm. Practice Paper, Computer Science with Python Preeti Arora Solutions CBSE Class 11.

Algorithm:

  1. Start
  2. Initialize the variable num to 2.
  3. Repeat while num is less than or equal to 10:
    Print num.
    Increment num by 2.
  4. End