Purchase Solution

Creating Pseudocodes and Flow Charts

Not what you're looking for?

Ask Custom Question

How do you write pseudocode and a flow chart that would let you put in up to 50 student names and 4 grades for each? The names need to be sorted alphabetically and the grades averaged and sorted from highest to lowest.

Purchase this Solution

Solution Summary

This is a guide on how to create a pseudocode and a flow chart that can allow data to be sorted alphabetically and have grades averaged.

Solution Preview

First, we need to build a structure to accept student name as well as the four grades. It can also calculate the average grades. In OOP design, we can use a student class defined as follows.
class Student {
String name; // The name of the student name
float grades[]; // Grades of the student.
float avg; // The average grade
float avgGrade() {
float totalGrade
for (int i=0; i<grades.length; i++) ...

Purchase this Solution


Free BrainMass Quizzes
Basic Networking Questions

This quiz consists of some basic networking questions.

Excel Introductory Quiz

This quiz tests your knowledge of basics of MS-Excel.

C# variables and classes

This quiz contains questions about C# classes and variables.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

Javscript Basics

Quiz on basics of javascript programming language.