Comp. Science
Programming and Technical
Category
A program c with 200 integers in the range 0 50 represents the scores of 200 students. It then prints the frequency of each score above 25. What would be the best way for c to store the frequency?
1. an array of 25 numbers
2. an array of 50 numbers
3. an array of 200 numbers
4. a dynamically allocated array of 250 numbers
Read Solution (Total 0)
Comp. Science Other Question