Draw a class diagram for the Student class here. (15 points)…

Draw a class diagram for the Student class here. (15 points)  Note: You may NOT draw the class diagram on paper.  How to create a table using Canvas Editor (space below): Move your mouse over the icon that looks like a table. When you hover your mouse on top, it will show “Table”. Click on the icon. Move the mouse up or down to hover over the “Table”, then move towards the right, you should be able to draw a table of the desired number of rows and columns (cells will be highlighted in blue). Use the table for the diagram.

Write the Java code data declarations for each of the follow…

Write the Java code data declarations for each of the following: A variable named commission which stores a dollar amount, such as 320.75[l1] A variable named count which stores an amount representing the number of iterations of a loop[l2] A variable named letter which stores a single uppercase or lowercase letter[l3] A variable named done which stores either true or false[l4] A constant named TAX_RATE whose value is 0.05[l5]   Using the declarations you created above, write Java statement for each of the following: Assign   320.75   as the value of commission[l6] Assign     h     as the value of letter [l7] Decrease count by 1[l8] Assign true to done [I9]

The final exam used to consist of two separate parts, part 1…

The final exam used to consist of two separate parts, part 1 and part 2. Due to COVID and the use of Honorlock, part 1 and part 2 are merged into one exam. You have the same amount of exam time, a total of 120 minutes, but only one submission.  In the past, each part took most of the students an average of 60 minutes to complete.  Please use time wisely.

//(optional) import java.util.Scanner; public class JokeOnly…

//(optional) import java.util.Scanner; public class JokeOnlyProgrammersUnderstand {              public static void main(String [] args ) {                 Scanner scan = new Scanner(System.in);                 System.out.println(“What’s your idea of a perfect date?”);                  String yourAnswer = scan.nextLine();