โ Back to Methods
Question 180
Check If Two Generic Values Are Equal
Check If Two Generic Values Are Equal
Complete the generic methodareEqualthat returnstrueif two values are equal andfalseotherwise. Use.equals()for comparison. IMPORTANT: Do NOT write a main method. A hidden test will callGenericCompare.areEqual("hello", "hello")andGenericCompare.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.