CJCoding With Joseph
15per day

Check If Two Generic Values Are Equal

Complete the generic method areEqual that returns true if two values are equal and false otherwise.

Use .equals() for comparison.

IMPORTANT: Do NOT write a main method. A hidden test will call GenericCompare.areEqual("hello", "hello") and GenericCompare.areEqual(5, 10) and print the boolean result of each.

Expected Output:

true
false
Topics:
GenericsMethods
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.