help pls (╥﹏╥) Activity 1

Create a flowchart that will display the Area of a circle. The circle has a Radius of 5cm. It has a constant

value of PI of 3.14. Follow the examples from the Flowchart Example No. 1-4 to be able to create your own

flowchart. Also follow the given rubrics below.

Activity 2

Create a flowchart that will display the Area of a rectangle. The formula of Area of rectangle is A = l x

w. Where A stands for area, l for length and w for width. Follow the examples from the Flowchart Example

No. 1-4 to be able to create your own flowchart. Also follow the given rubrics below.

Activity 3

Create a flowchart that will ask the user to enter a Gender. If the user enters a value of “M” the flowchart

will display a message notification saying “You’re a Male”. On the other hand, If the user enters “F” a message

notification will display “You’re a Female”. Follow the examples from the Flowchart Example No. 1-4 to be

able to create your own flowchart. Also follow the given rubrics below.​

Respuesta :

There are several ways, the prototype of an actual program can be represented; one of them, is by making use of flowcharts

Flowcharts show the steps taken to execute a task, graphically.

(a) Area of a circle

The flow of the flowchart, goes as thus:

  1. Start
  2. Let Radius = 5
  3. Let PI = 3.14
  4. Calculate Area = PI * Radius * Radius
  5. Print Area
  6. Stop

(b) Area of a rectangle

The flow of the flowchart, goes as thus:

  1. Start
  2. Input l
  3. Input w
  4. Calculate Area = l * w
  5. Print Area
  6. Stop

(c) Area of a circle

The flow of the flowchart, goes as thus:

  1. Start
  2. Input Gender
  3. If Gender == 'M"
  4. Print "You're a Male"
  5. else
  6. Print "You're a Female"
  7. Stop

See attachment for the required flowcharts

Read more about flowcharts at:

https://brainly.com/question/17373574

Ver imagen MrRoyal