Create a flowchart and an algorithm of different programs part four(4)

Codynn
5 Min Read

30. Create a flowchart and an algorithm to display the volume of the hemisphere.

Algorithm:

Step 1: Start

Step 2: Input Radius. ( R )

Step 3: V = ( 2 / 3 ) * 3.14 * R ^ 3

Step 4: Print “ Volume of Hemisphere” V

Step 5: Stop/End 

Flowchart:

Create a flowchart and to display the volume of the hemisphere.
Create a flowchart and to display the volume of the hemisphere.

31. Create a flowchart and an algorithm to display total surface area and volume of cube.

Algorithm:

Step 1: Start

Step 2: Input Length. (L)

Step 3: A = 6 * L ^ 2

Step 4: V = L ^ 3

Step 5: Print “ Total Surface Area of Cube ” A

Step 6: Print “ Volume of Cube ” V

Step 7: Stop/End

Flowchart:

Create a flowchart to display total surface area and volume of cube.
Create a flowchart to display total surface area and volume of cube.

32 . Create a flowchart and an algorithm to the area of the triangle.

Algorithm:

Step 1: Start 

Step 2: Input Breadth and Height. (B, H)

Step 3: A = 1/2 * ( B * H )

Step 4: Print “Area of triangle“ A

Step 5: Stop/End 

Flowchart:

Create a flowchart to the area of the triangle
Create a flowchart to the area of the triangle

33. Create a flowchart and an algorithm to calculate the volume of a cube.

Algorithm:

Step 1: Start

Step 2: Input Length. (L)

Step 3: V = L ^ 3

Step 4: Print “ Volume of Cube “ V

Step 5: Stop/End

Flowchart:

reate a flowchart to calculate the volume of a cube.
reate a flowchart to calculate the volume of a cube.

34.Create a flowchart and an algorithm to display the perimeter of the square.

Algorithm:

Step 1: Start

Step 2: Input length of square(l)

Step 3: p = 4 * l

Step 4: Print p

Step 5: Stop/End

Flowchart:

Create a flowchart to display the perimeter of the square
Create a flowchart to display the perimeter of the square

35. Create a flowchart and an algorithm to display the area of parallelogram.

Algorithm:

Step 1: Start 

Step 2: Input breadth and height of parallelogram(b, h)

Step 3: A = b * h

Step 4: Print Area is: A

Step 5: Stop/End

Flowchart:

Create a flowchart to display the area of parallelogram.
Create a flowchart to display the area of parallelogram.

36.Create a flowchart and an algorithm to display the volume of the cuboid/box.

Algorithm:

Step 1: Start

Step 2: input Length, Breadth and Height. (L, B, H)

Step 3: V = L * B * H

Step 4: Print “ Volume of Cuboid “ V

Step 5: Stop/End

Flowchart:

Create a flowchart to display the volume of the cuboid/box.
Create a flowchart to display the volume of the cuboid/box.

37. Create a flowchart and an algorithm to ask value in meter and convert it in inch.

Algorithm:

Step1: Start

Step 2:Input the length in Meter (M)

Step 3:  I = M * 39.37

Step 4:  Print “ Value In Inch “ I

Step 5:  Stop/End

Flowchart:

Create a flowchart to ask value in meter and convert it in inch.
Create a flowchart to ask value in meter and convert it in inch.

38. Create a flowchart and an algorithm to display total surface area and volume of hemisphere.

Algorithm:

Step 1: Start

Step 2: input Radius. ( R )

Step 3: A = 3 * 3.14 * R ^ 2

Step 4: V = ( 2 / 3 ) * 3.14 * R ^ 3

Step 5: Print “ Total Surface Area OF Hemisphere “ A

Step 6: Print “ Volume of Hemisphere “ V

Step 7: Stop/End

Flowchart:

Create a flowchart to display total surface area and volume of hemisphere.
Create a flowchart to display total surface area and volume of hemisphere.

39. Create a flowchart and an algorithm to display area and perimeter of square.

Algorithm:

Step 1: Start

Step 2: Input Length. (L)

Step 3: A = L ^ 2

Step 4: P = 4 * L

Step 5: Print “ Area of Square “ A

Step 6: Print “ Perimeter of Square “ P

Step 6: Stop/End 

Flowchart:

Create a flowchart to display area and perimeter of square.
Create a flowchart to display area and perimeter of square.

40. Create a flowchart and an algorithm to display cost of painting the four walls of a room.

Algorithm:

Step 1: Start

Step 2: Enter length, breadth, height and cost (l, b, h, c)

Step 3: A = 2 * h * (l + b)

Step 4: T =  c * A

Step 4: Print Cost is :T

Step 5: Stop/End

Flowchart:

Create a flowchart to display cost of painting the four walls of a room.
Create a flowchart to display cost of painting the four walls of a room.
Share This Article
Leave a comment

Leave a Reply

Your email address will not be published. Required fields are marked *