Saved Bookmarks
| 1. |
Write an algorithm to input the scores obtained in three unit tests and find the average score.ORExplain the flow chart and predict the output. |
|
Answer» Step 1 : Start Step 2 : Read S1, S2, S3 Step 3 : avg = S1 + S2 + S3/3 Step 4 : Print avg Step 5 : Stop OR This flowchart is used to print the numbers as 1,2,3, ……… 30 |
|