Question: Help me with this. You will write the method nthDataValue of the Poll class which is described as follows. Method nthDataValue returns the nth data

Help me with this.
You will write the method nthDataValue of the Poll class which is described as follows. Method nthDataValue returns the nth data value when the data values are considered in sorted order. Recall that the indexes of the array represent possible data values and that each array location contains the frequency of the value corresponding to its index. In the example reprinted below, the first ten data values are 2, the next five data values are 3, and the next ten data values are 4. For this example, nthDataValue(count, 1) returns 2, nthDataValue(count, 14) returns 3, and nthDataValue(count, 15) returns 4. Index 0 1 Frequency 2 2 2 3 22 4 5 22 6 2 7 8 9 10 22 23 11 3 12 3 13 3 14 15 3 4 16 4 17 18 19 4 44 20 21 4 4 22 4 23 4 24 4 Complete method nthDataValue in your word document. Use the following heading to get started: /** *precondition: count.length > 0; *0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
