Q1. Write an algorithm and draw flowchart to compute the volume of a sphere. Formula: V = (4/3) *pi*r3 where pi is equal to 3.1416 approximately. r is the radius of sphere.
Q2. Write an algorithm and draw flowchart that converts the input dollar to its peso exchange rate equivalent. Assume that the present exchange rate is 51.50 pesos against the dollar.
Q3. Write an algorithm and draw flowchart that converts an input inch(es) into its equivalent centimeters. Take note that one inch is equivalent to 2.54cms.
Q4. Write a algorithm and draw flowchart that exchanges the value of two variables: x and y. The output must be: the value of variable y will become the value of variable x, and vice versa.
Q5. Write an algorithm and draw flowchart to find the circumference of a circle. Use the formula: C=2πr, where π is approximately equivalent 3.1416.
Q6. Write an algorithm and draw flowchart that takes as input the purchase price of an item (P), its expected number of years of service (Y) and its expected salvage value (S). Then outputs the yearly depreciation for the item (D).Use the formula: D = (P – S) Y.
Q7. Write an algorithm and draw flowchart for swapping of two variables without using temporary (or 3rd variable).
Q8. Determine the most economical quantity to be stocked for each product that a manufacturing company has in its inventory: This quantity, called economic order quantity (EOQ) is calculated as follows: EOQ=2rs/1 where:R= total yearly production requirement S=set up cost per order, I=inventory carrying cost per unit.
Q7. Write an algorithm and draw flowchart to compute the radius of a circle. Derive your formula from the given equation: A=πr², then display the output.
Q8. Write an algorithm and draw flowchart to go for a class picnic
Q9. Write an algorithm and draw flowchart to celebrate New Year
Q10. Write an algorithm and draw flowchart to make tea/coffee
Q11. Write an algorithm and draw flowchart to celebrate Teachers' Day
Q12. Write an algorithm and draw flowchart to brush your teeth.
Q13. Write an algorithm and draw flowchart to convert the days into hours, minute and seconds.
Q14. Write an algorithm and draw flowchart to calculate the overall salary of
an employee with bonus.
Q15. Write an algorithm and draw flowchart to calculate the difference between height of two students in feet and inches.
Q16. Write an algorithm and draw flowchart to find the total time spend in executing program if T1 is beginning time T2 is stopped time and T3 is time duration for solving errors.
Q17. Write an algorithm and draw flowchart to display first five natural
numbers.
Q18. Write an algorithm and draw flowchart to display n times natural numbers.
Q19. Write an algorithm and draw flowchart to find factorial of a number.
Q20. Write an algorithm and draw flowchart to find the sum of digits of the numbers.
Q21. Write an algorithm and draw flowchart to count number of digits in a number.
Q22. Write an algorithm and draw flowchart to print the factors of a numbers.
Q23.
Write an algorithm and draw flowchart to check inputted number is perfect
or not.
Q24. Write an algorithm and draw flowchart to find the reverse of a number.
Q25. Write an algorithm and draw flowchart to check number is palindrome.
Q26. Write an algorithm and draw flowchart to check number is prime or not
Q27. Write an algorithm and draw flowchart to check number is composite
Q28. Write an algorithm and draw flowchart to print all odd and even numbers between 21 to 52 using repetitive concept.
Q29. Write an algorithm and draw flowchart to print the table of a number.
Q30. Write an algorithm and draw flowchart to solve the expression X to the power N using iterative approach.
Q31. Write an algorithm and draw flowchart to print your name 100 times using repetitive concept.
Q32. Write an algorithm and draw flowchart to find factors of a number using iterative approach.
Q33. Write an algorithm and draw flowchart to print Fibonacci series using iterative approach.
Q34. Write an algorithm and draw flowchart to print sum of natural numbers from 1 to 100 using iterative.
Q35. Write an algorithm and draw flowchart using iterative approach to print the prime numbers between 1-10.