Aparna appeared for the Cyber Olympiad test. Write an algorithm and draw a flowchart to show the result as 'Excellent' if she scored more than 95%, and "Good if she scored less than 95%.
Answers
Here's an algorithm and a corresponding flowchart to determine the result of Aparna's Cyber Olympiad test:
Algorithm:
1. Start
2. Input the score obtained by Aparna
3. If the score is greater than 95%, then
- Display "Excellent"
4. Else,
- Display "Good"
5. Stop
Flowchart:
```
+-----------------+
| Start |
+-----------------+
|
V
+-----------------+
| Input Score |
+-----------------+
|
V
+-----------------+
| Score > 95% |
+-----------------+
|
V
+-----------------+
| Display |
| "Excellent" |
+-----------------+
|
V
+-----------------+
| Stop |
+-----------------+
|
V
```
In the flowchart, the diamond-shaped symbol represents a decision point. If the condition "Score > 95%" is true, it follows the path to display "Excellent." If the condition is false, it follows the path to display "Good." Finally, the process ends with the "Stop" symbol.
Please note that this algorithm and flowchart assume a single condition based on the score being greater than or less than 95%. If there are additional conditions or requirements, the algorithm and flowchart may need to be modified accordingly.
To know more: -
https://brainly.in/question/16221609?referrer=searchResults
https://brainly.in/question/42857534?referrer=searchResults
#SPJ1