Q1) You have 3 identical prizes to give away and a pool of 10 finalist. Finalists are assigned numbers of 1 to 10. write a program to randomly select the numbers of 3 finalist to recieve a prize. Make sure not to pick the same number twice. For example picking finalist 3, 15, 29 woul valid but picking 3,3,31 would be invalid because finalist number 3 is listed twice and 31 is not a valid finalist number. the following line of code can be used to generate a random number between 1 and 30
int num = ( int) ( mat.random()*10)+1; by using textpad.