Question: Instructions Due date: 1 0 / 1 4 / 2 0 2 4 2 : 0 0 : 0 0 PM Display AlbumName and SongName
Instructions
Due date: :: PM
Display AlbumName and SongName for all albums and songs. Order the results first by AlbumName in alphabetical order and then by SongName in alphabetical order.
Write a method called AvgGrades that computes the average of the grades in the lstGrades listBox. Return the computed average as a double.
private double AvgGrades
Write a method called RangeCount that will return the count of the grades in IstGrades that are in the range specified by the lo and hi parameters from lo to hi inclusive
private int RangeCountint lo int hi
Write a method called SearchGrade that will return true if the grade to be searched for is found in the IstGrades list box or false if not found.
private bool SearchGradeint gradeToFind
Write a method called FindGrade that will search for a grade in the IstGrades list box. This method should return the index where the grade is found or if not found
private int FindGradeint gradeToFind
Write a method called SaveFile that uses Streamwriter createText to save the grades from the IstGrades listBox to the namelocation specified by the filename parameter.
private void SaveFilestring filename
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
