Write a pseudo code algorithm which:

• Determines the average weight of a person over a particular year.
• For each month, your algorithm should input the person's weight for that month (a positive
real number). Your algorithm should loop, repeating the input, until the input is positive.
• Finally, your algorithm output the average weight.

pseudocode that will accept 20 numbers and find their product????

Write an algorithm in pseudocode that finds the average of numbers in list A[n].

Convert a binary number to its decimal value

Write an Algorithm (Pseudo-code) and draw the flowchart to INPUT a student mark and then PRINT (display) the student evaluation that corresponds to its mark as follow:

Mark Evaluation <60
“Fail”
60<mark<69 “D”

70<mark<79 “C”

80<mark<89 “B”

90<mark<100 “A”

Sure! Here is a pseudo code algorithm that determines the average weight of a person over a particular year:

1. Initialize a variable "total_weight" to 0.
2. Initialize a variable "month_count" to 0.
3. Repeat the following steps for each month in the year:
a. Input the person's weight for that particular month.
b. Check if the input weight is positive:
i. If the weight is positive, add it to the "total_weight" variable.
ii. Increment the "month_count" variable by 1.
iii. If the weight is not positive, repeat step 3a to input a valid weight.
4. Calculate the average weight by dividing "total_weight" by "month_count".
5. Output the average weight.

Here is the complete pseudo code algorithm:

```
total_weight <- 0
month_count <- 0

FOR each month in the year
REPEAT
INPUT weight for the current month
UNTIL weight > 0

total_weight <- total_weight + weight
month_count <- month_count + 1
END FOR

average_weight <- total_weight / month_count
OUTPUT average_weight
```

You can implement this algorithm in any programming language by translating the pseudo code into the specific syntax of your chosen programming language.