Every homework assignment should be done as a report. For each report you should include:•
Every homework assignment should be done as a report. For each report you should include:• 5 points: Your name• 10 points: An assignment title• 10 points: A single sentence that explains what you learned or noticed.For every problem that you work through, you should include:• 10 points: A single question describing what the question is asking• 20 points: Your code• 10 points: Your code output• 10 points: A discussion of your solution*4.8 (Find the character of an ASCII code) Write a program that receives an ASCII code(an integer between 0 and 127) and displays its character. Here is a sample run:Enter an ASCII code: 69The character for ASCII code 69 is E4.16 (Random character) Write a program that displays a random uppercase letterusing the Math.random() method.4.25 (Generate vehicle plate numbers) Assume a vehicle plate number consists of threeuppercase letters followed by four digits. Write a program to generate a platenumber.