0% found this document useful (0 votes)
9 views1 page

Flowchart Questions

The document outlines a series of programming exercises categorized into four levels of complexity. Level 1 focuses on basic operations without loops, Level 2 introduces simple loops for calculations, Level 3 combines conditionals with loops for more complex tasks, and Level 4 involves nested loops for advanced patterns and logic. Each level presents specific problems to solve, ranging from finding the largest number to generating prime numbers.

Uploaded by

090aspire2025
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

Flowchart Questions

The document outlines a series of programming exercises categorized into four levels of complexity. Level 1 focuses on basic operations without loops, Level 2 introduces simple loops for calculations, Level 3 combines conditionals with loops for more complex tasks, and Level 4 involves nested loops for advanced patterns and logic. Each level presents specific problems to solve, ranging from finding the largest number to generating prime numbers.

Uploaded by

090aspire2025
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Level 1 – No Loop (Recap & Warm-up)

1. Find the largest of three numbers.

2. Check if a year is a leap year.

3. Calculate the grade of a student based on marks.

4. Determine if a person is eligible to vote.

5. Display the absolute value of a number.

Level 2 – Simple Loops (For/While)

6. Display numbers from 1 to N.

7. Calculate the sum of first N natural numbers.

8. Calculate the factorial of a given number.

9. Display the multiplication table of a number.

10. Count the number of digits in a number.

Level 3 – Conditional + Loop

11. Find the sum of all even numbers between 1 and N.

12. Reverse the digits of a number.

13. Check if a number is prime.

14. Find the sum of digits of a number.

15. Generate the first N terms of the Fibonacci series.

Level 4 – Nested Loops (Patterns & More Complex Logic)

16. Display a right-angled triangle of stars (e.g., 5 rows).

17. Display a number triangle:

12

123

18. Display a multiplication table from 1 to 10.

19. Find the HCF (GCD) of two numbers.

20. Generate all prime numbers between 1 and N.

You might also like