Problem 4
Create an application that will allow a teacher to enter the scores for each student in their class and then display the scores in rank order (name and score for each student)
The program should follow the following steps:
1. Set the number of students in an array
2. Ask the user for the Score for each student
3. Sort the scores into rank order
4. Display the Scores for each student in order
Name you application Task5Sort
Hint: Bubblesort (http://support.microsoft.com/default...b;en-us;133135)

Problem 5
Create an application that will read in a list of names and then display the names in a random order. The Fisher-Yates shuffle uses the following algorithm to sort a set of data into a random order in such a way that each different order is equally possible. You can use this, or another shuffle algorithm that you find on Google.
The program should follow the following steps:
1. Input a number of names into an array
2. Have the values in the array arranged in a random order.
3. Output the names onto a label.
Fisher-Yates shuffle: http://en.wikipedia.org/wiki/Fisher%...3Yates_shuffle
Name your application Task5Shuffle

Can ANYONE AT ALL HELP ME WITH THIS, I AM STRUGGLING A WHOLE LOT, ANY HELP WOULD BE APPRECIATED, THANKS!