You are on page 1of 7

HERRERA, FATIMA MARIE S.

FLOWCHART
PECEIT-02-101A 10/06/2022
FLOWCHART
1. Create the pseudocode flowchart for adding the quizzes as given below and determine
the average of the student for the six quizzes. Also determine if the student passes or
fails base from the average score. Average score below 70 fails.
Scores: quiiz1 = 50, quiz2 = 65, quiz3 = 90, quiz4 = 40, quiz5 = 95, quiz6 = 100

START

Q1 = 50 Q2 = 65
Q3 = 90 Q4 = 40
Q5 = 95 Q6 = 100
SUM AVERAGE

50 65

40 90

95 100

AVERAGE = SUM/6 SUM = 50+65+40+90+95+100

YES
If (AVERAGE THEN, PRINT FAIL Your text here
< 70) Your text here

NO

THEN, PRINT PASS STOP


HERRERA, FATIMA MARIE S. FLOWCHART
PECEIT-02-101A 10/06/2022
2. Create the pseudocode flowchart given the following information:
Input three numbers (whole numbers only)
Identify the greater number
Identify the smaller number

START

NUM 1
NUM 2
NUM 3 If NUM 1 <
NUM 2 AND
NUM 3
Then, SMALL = NUM 1
NUM 1

NUM 2

NUM 3
If NUM 2 <
NUM 1 AND
NUM 3

If NUM 1 >
Then, SMALL = NUM 2
NUM 2 AND Then, BIG = NUM 1
NUM 3

If NUM 3 <
NUM 1 AND
If NUM 2 > NUM 2
NUM 1 AND Then, BIG = NUM 2 Then, SMALL = NUM 3
NUM 3

STOP

If NUM 3 >
NUM 1 AND
NUM 2 Then, BIG = NUM 3
HERRERA, FATIMA MARIE S. FLOWCHART
PECEIT-02-101A 10/06/2022
3. Create the pseudocode flowchart.

o Answer = (A + B + C) / Y

START

NUM 1 = A
NUM 2 = B
NUM 3 = C
SUM
AVERAGE

SUM = A+B+C

AVERAGE = (A+B+C)/ Y

STOP
HERRERA, FATIMA MARIE S. FLOWCHART
PECEIT-02-101A 10/06/2022
o Convert Celsius to Fahrenheit. (multiply by 9, then divide by 5, then add 32)

START

CELSIUS
FAHRENHEIT
NUM 1 =9
NUM 2 = 5
NUM 3 = 32

32

FAHRENHEIT = CELSIUS *9 / 5 + 32

PRINT THE CONVERTED FAHRENHEIT

STOP
HERRERA, FATIMA MARIE S. FLOWCHART
PECEIT-02-101A 10/06/2022
o Area of circle (∏ r2)

START

AREA OF CIRCLE = A
NUM 1 = 兀
NUM 2 = r2

R2

A = ∏r2

PRINT THE CALCULATED AREA OF CIRCLE

STOP
HERRERA, FATIMA MARIE S. FLOWCHART
PECEIT-02-101A 10/06/2022
o Volume of sphere ((4/3) ∏ r3)

START

VOLUME OF SPHERE = V
NUM 1 = 4/3
NUM 2 = 兀
NUM 3 = r3

4/3

R3

V = ((4/3) ∏ r3

PRINT THE CALCULATED VOLUME OF SPHERE

STOP
HERRERA, FATIMA MARIE S. FLOWCHART
PECEIT-02-101A 10/06/2022
o Average speed = Distance travelled/time

START

AVERAGE SPEED = V
NUM 1 = DISTANCE
NUM 2 = TIME

DISTANCE

TIME

V = DISTANCE TRAVELLED / TIME

V = m/s

PRINT THE CALCULATED AVERAGE SPEED

STOP

You might also like