Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
23 views2 pages

Algorithm Flowchart Problems

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

Algorithm Flowchart Problems

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

🔹 Level 1: Easy (Remembering & Understanding)

These focus on basic logic building and understanding flowcharts.

1. Convert Celsius to Fahrenheit (Remember)

2. Find the largest of two numbers (Understand)

3. Check if a number is Even or Odd (Understand)

4. Print the first N natural numbers (Remember)

5. Calculate Simple Interest (SI = P×R×T/100) (Understand)

6. Check if a year is Leap Year or not (Understand)

7. Find the sum of digits of a number (Apply basic loop logic)

8. Reverse a given number (Apply loop + modulus operation)

9. Generate multiplication table of a number (Apply)

10. Find the factorial of a number (using loop) (Apply)

🔹 Level 2: Medium (Applying & Analyzing)

These require decision-making and nested loops.

1. Find the largest of three numbers (Analyze conditions)

2. Check if a number is Prime or Not (Apply + Analyze)

3. Find GCD and LCM of two numbers (Apply)

4. Generate Fibonacci Series up to N terms (Apply)

5. Check if a number is Palindrome (Analyze flow)

6. Check if a number is Armstrong Number (Apply digit-based logic)

7. Calculate the sum of first N odd/even numbers (Analyze patterns)

8. Print Pascal’s Triangle up to N rows (Apply + Analyze)

9. Count the number of vowels and consonants in a string (Apply)

10. Find the roots of a quadratic equation (Analyze + Apply formula)

🔹 Level 3: Hard (Evaluating & Creating)

These require critical thinking, optimization, and multi-step logic.

1. Sort an array using Bubble Sort / Selection Sort (Flowchart + Algorithm) (Analyze +
Evaluate)

2. Search an element using Linear Search & Binary Search (Analyze efficiency)
3. Check if a number is Strong Number (sum of factorials of digits = number) (Analyze)

4. Check if a number can be expressed as sum of two prime numbers (Evaluate)

5. Generate Floyd’s Triangle / Diamond Pattern using loops (Create flow)

6. Design an algorithm to convert Decimal → Binary (Evaluate + Create)

7. Implement Tower of Hanoi problem (recursive logic flowchart) (Analyze recursion)

8. Algorithm to check Magic Square (matrix sums equal) (Evaluate + Create)

9. Algorithm to find the frequency of each character in a string (Analyze data structures)

10. Design a flowchart for ATM transaction (withdrawal, balance inquiry, deposit) (Create real-
world problem-solving)

📊 Bloom’s Taxonomy Mapping

 Remembering → Write flowchart for Celsius to Fahrenheit, Print numbers.

 Understanding → Leap year check, Even/Odd, Simple Interest.

 Applying → Factorial, Fibonacci, Prime check.

 Analyzing → Palindrome, Quadratic equation, GCD/LCM.

 Evaluating → Search algorithms, Strong Number, Sum of two primes.

 Creating → ATM system, Tower of Hanoi, Decimal to Binary converter.

You might also like