Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. Test Scores #1<?xml:namespace prefix = o ns = \"urn:schemas-microsoft-com:off

ID: 3533445 • Letter: 1

Question

1.       Test Scores #1<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

Create a New Project called YourLastnameSortScores.

Write a program that dynamically allocates an array large enough to hold a user-defined number of test scores. Once all the scores are entered, the array should be passed to a function that sorts them in ascending order. Another function should be called that calculates the average score. The program should display the sorted list of scores and averages with appropriate headings. Use pointer notation rather than array notation whenever possible.

Input Validation: Do not accept negative numbers for test scores.

2.       Mode Function

Create a New Project called YourLastnameModeFunction.

In statistics, the mode of a set of values is the value which occurs most often or with the greatest frequency. Write a function that accepts as arguments the following:

A.      An Array of integers

B.      An integer that indicates the number of elements in the array

The function should determine the mode of the array. That is, it should determine which value in the array occurs most often. The mode is the value the function should return. If the array has no mode (none of the values occur more than once), the function should return -1. (Assume the array will always contain non-negative values.)

Demonstrate your pointer prowess by using pointer notation instead of array notation in this function.

Explanation / Answer

//please rate

http://ideone.com/rS33SQ