25 points) Write a Java program that prompts a user to enter student
25 points) Write a Java program that prompts a user to enter student
EMPLID (e.g., 12389), quiz 1percentage score (e.g., 89.5), quiz 2 percentage score (e.g., 81.2), and your age (e.g. 32) and thecurrent temperature in degrees Fahrenheit and then displays the data entered along with someconversions and calculations. You should use the command prompt and not a GUI for data entry anddisplay. Here is a sample run:Enter your Student EMPLID (0 – 999999): 4301Enter your quiz1 percentage score (0.0 – 100.0): 89.1Enter your quiz2 percentage score (0.0 – 100.0): 82.1Enter your age (0-120): 32Enter the current Temperature in degrees Fahrenheit: 32.0******* Thank you for completing our survey **********************************Student EMPLID: 4301Quiz 1 Score: 89.1Quiz 2 Score: 82.1Average quiz score: 85.6Temperature in Celsius: 0.0Age: 32Note the following for the output for this application:1. Degrees Fahrenheit has been converted to degrees Celsius on the output.2. The temperature output provides the degrees symbol (°). (Hint: Use Unicode characters)3. The average quiz score is calculated from the two quiz scores input.G