Question: CS 110 Lab Assignment 11 NOTE: S points will be given for well-constructed comments in submitted codes. Problem 1 (10 points): Write a program printFrequency

 CS 110 Lab Assignment 11 NOTE: S points will be given

CS 110 Lab Assignment 11 NOTE: S points will be given for well-constructed comments in submitted codes. Problem 1 (10 points): Write a program printFrequency java that will take an integer array and number of elements that it stores as user input and will print frequency of each element in the given array Sample Input: Enter length of array: 8 Enter element 0: 2 Enter element 1: 5 Enter element 2: 6 Enter element 3: 5 Enter element 4: 2 Enter element 5:8 Enter element 6:8 Enter element 7: 5 Enter element 8: 5 Sample Output: Element 2 has frequency: 2 Element 5 has frequency: 4 Element 6 has frequency: 1 Element 8 has frequency: 2 Problem 2 (10 points): Write a program findMaxima.java that will take an integer array and number of elements that it stores as user input and will print all the Maximas. (NOTE: An element is a Maxima if it is greater than all the elements to its right side) Sample Input: Enter length of array: 7 Enter element 0: 10 Enter element 1: 9 Enter element 2: 14 Enter element 3:23 Enter element 4: 15 Enter element S: 0 Enter element 6: 9 Sample Output: Maximas in the given array are: 23, 15, 9

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!