Advertisements
Advertisements
प्रश्न
What will be the output of the following program snippet?
strl = "AMAN"8
str2 = "AMIT"
System.out.println(strl.compareTo(str2));
पर्याय
8
0
−8
2
MCQ
उत्तर
−8
Explanation:
- If the first string has fewer ASCII characters than the second one, compareTo() gives a negative number.
- "AMAN" and "AMIT" differ in their third characters, 'A' and 'I.' The compareTo() method will return the ASCII code of 'A' minus the ASCII code of 'I', which is 65 - 73 = −8.
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?