Advertisements
Advertisements
प्रश्न
What will be the output of the following program snippet?
s1 = "COMPUTER"
s2 = "computer"
System.out.println(s1.equals(s2));
विकल्प
True
False
0
1
MCQ
उत्तर
False
Explanation:
The equals() function in Java (and other comparable languages) compares two strings exactly, including case. Because "COMPUTER" (uppercase) and "computer" (lowercase) are not the same when case-sensitive comparison is used, s1.equals(s2) gives False.
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?