Question: LO: (Apply) Students will use vectors to store data for a computation. The mode of a dataset is the item that appears most frequently. Write
LO: (Apply) Students will use vectors to store data for a computation.
The mode of a dataset is the item that appears most frequently.
Write a program to read in numbers between 1 and 100 and then report the mode. If more than one number appears most frequently, choose the highest number. Output a line with the result in this format:
The most frequent value was 42, appearing 9 times.
Code:
public class DataAnalysis {
public static void main(String[] args) { // TODO: Write your code here System.out.println("The most frequent value was " + 50 + ", appearing " + 0 + " times."); }
}
Test Case 1:

Test Case 4:

Debugging Information for Test Case 1 0 DEBUG INFO Your instructor has chosen to give you the following information to help you debug your code and improve your submission. COMPILER STACK TRACE None PROGRAM EXECUTION STACK TRACE None INPUT OF THE TEST CASE 4 5 6 nmn 6 -1 YOUR CODE'S OUTPUT 1 The most frequent value was 50, appearing a times. 2 THE CORRECT OUTPUT OF THE TEST CASE The most frequent value was 6, appearing 2 times. 1 2 Debugging Information for Test Case 4 O X DESCRIPTION de. Numbers DEBUG INFO Your instructor has chosen to give you the following information to help you debug your code and improve your submission. COMPILER STACK TRACE None PROGRAM EXECUTION STACK TRACE None was INPUT OF THE TEST CASE 10 1 2 3 10 4 4 -10 YOUR CODE'S OUTPUT 1 The most frequent value was 50, appearing a times. THE CORRECT OUTPUT OF THE TEST CASE The most frequent value was 10, appearing 2 times. UNIX DIFF OF CORRECT OUTPUT AND YOUR OUTPUT 1c1 The most frequent value was 10, appearing 2 times. PRETTY DIFF indicates This diff is colored to make it clear what parts of the output are wrong. Green indicates things in the correct output that you are missing, things in your output that shouldn't be there. The character refers to newlines, so the green character refers a newline you are missing in your output and the red refers to a newline you need to remove from your output. The most frequent value was 510, appearing 62 times
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
