Create a PowersTable application that displays a table of of powers similar to: x^1x^2x^3x^4x^5 1 1 1 1 1 2 4 8 16 32 3 9 2781 243 4 1664256 1024 5 25125625 3125 6 362161296 7776 x^1x^2x^3x^4x^5 1 1 1 1 1 2 4 8 16 32 3 9 2781 243 4 1664256 1024 5 25125625 3125 6 362161296 7776 Create a CoinFlip application that allows the user to input a desired number of coin flips. Use the Random class to generate a number between 1 and 100. If the result is 50 or less, then that result represents ″heads″; otherwise, it represents ″tails″. Generate the number of tosses requested by the user, keeping track of heads and tails. After the tosses are completed, display the percentages of heads and tails. The program should also ask the user if they would like to play again and allow for multiple plays. Create a DiceRolls application that displays five rolls of two dice where each die is numbered from 1 to 6. The program should also ask the user if they would like to play again and allow for multiple plays. The application should show the total of each roll: Dice 1Dice 2Total 3 3 6 2 1 3 1 3 4 4 3 7 3 1 4