The document lists 28 problems related to algorithms and flowcharts. The problems involve writing algorithms or drawing flowcharts to solve tasks such as printing factorials, checking if a number is prime, finding Fibonacci numbers, determining if characters are vowels/consonants, calculating areas of shapes, checking for divisibility, finding minimum/maximum values, determining if numbers are odd/even, calculating averages, exchanging values of variables, finding the greatest among three numbers, checking if numbers are palindromes or perfect, converting between decimal and binary, calculating electricity bills based on usage, determining student grades, finding roots of quadratic equations, printing prime numbers, calculating Fibonacci numbers, checking for Armstrong and perfect numbers, printing the individual digits of
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
44 views
Assignment 1 Algoand Flowcharts
The document lists 28 problems related to algorithms and flowcharts. The problems involve writing algorithms or drawing flowcharts to solve tasks such as printing factorials, checking if a number is prime, finding Fibonacci numbers, determining if characters are vowels/consonants, calculating areas of shapes, checking for divisibility, finding minimum/maximum values, determining if numbers are odd/even, calculating averages, exchanging values of variables, finding the greatest among three numbers, checking if numbers are palindromes or perfect, converting between decimal and binary, calculating electricity bills based on usage, determining student grades, finding roots of quadratic equations, printing prime numbers, calculating Fibonacci numbers, checking for Armstrong and perfect numbers, printing the individual digits of
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2
Problems on Algorithms and Flowcharts
1. Write an Algorithm print factorial of a number.
2. Draw a flowchart to find nth Fibonacci element . 3. Draw a flowchart to print all arithmetic operations using switch case. 4. Write an Algorithm to check given no is prime no or not 5. Draw a flowchart to print the last digit of a given number. 6. Draw a flowchart to check if a given character is vowel or consonant. 7. Draw a flowchart to find the area of circle and triangle. 8. Draw a flowchart to check given no is divisible by 5 and 11. 9. Draw a flowchart to print minimum among three integer value 10. Write an Algorithm for perimeter of Triangle 11.Draw a flowchart read a number “n” and check is "n" odd or even. 12.Draw a flow chart to find the average of ‘n’ Numbers? 13.Write an algorithm to exchange two integer nos. 14.Draw a flowchart to print greatest among three integer values. 15.Draw Flowchart to check given number is Palindrome number or not 16.Draw a flowchart to check given number is the perfect number or not 17.Draw a Flow chart to convert decimal numbers to binary numbers 18.Draw a Flow chart to calculate Electricity bill 19.Draw a Flow chart to calculate Grade of a student for 5 subjects marks 20.Draw a Flowchart to print the roots of a quadratic equation 21.Draw a Flowchart to print N prime numbers 22.Write an Algorithm to print N'th Fibonacci number?
23.Write an algorithm to check given number is Armstrong number or not
24.Write an algorithm to print series of prime numbers 25.Write an algorithm to check given number is the perfect number or not 26.Write an algorithm to print the individual digits of a given number.
input: 438
output:
4 3
27.Write an algorithm for calculating the GCD of 2 numbers
28.Write an algorithm to convert decimal number to the binary number.