CJCoding With Joseph
15per day

Create a Generic Student Record

Complete the StudentRecord<T, U> class. The fields are already declared. Add a constructor that sets them, and complete the printRecord() method so it prints the name and grade on separate lines.

IMPORTANT: Do NOT write a main method. A hidden test will create StudentRecord<String, Integer> and StudentRecord<String, String> objects and call printRecord() on each.

Expected Output:

Alice
95
Bob
A
Topics:
GenericsClasses
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.