Pseudocode algorithms are used as prototypes of an actual program.
The required pseudocode algorithm is as follows:
- <em>Start</em>
- <em>input name, score, test_worth</em>
- <em>percent_score = score/test_worth * 100</em>
- <em>print name, percent_score</em>
- <em>Stop</em>
<em />
<em />
The first line begins the pseudocode algorithm
<em>Start</em>
The second line gets input for the student's name, score and the worth of the test
<em>input name, score, test_worth</em>
The third line calculates the percentage score
<em>percent_score = score/test_worth * 100</em>
The next line prints the student's name and the percentage score
<em>print name, percent_score</em>
The last line ends the pseudocode
<em>Stop</em>
<em />
<em />
<em />
Read more about pseudocode algorithms at:
brainly.com/question/21172316