Computer Applications
Which of the following String methods results into boolean data type?
- trim()
- equals()
- replace()
- concat()
Java String Handling
16 Likes
Answer
equals()
Reason — In Java, the equals() method compares the contents of two strings and returns a boolean value (true or false), whereas trim(), replace(), and concat() return new strings, not boolean values.
Answered By
6 Likes
Related Questions
Which construct can be used to get only one of the required ice creams?

- switch construct
- while construct
- do.. while construct
- for construct
Which statement is correct for the method prototype given below:
int check(char ch, String s)- check() does not return any value
- check() has return type int
- check method has two actual parameters
- check() is a constructor
The Math method which returns int value is:
- round()
- cbrt()
- ceil()
- random()
What is the output of the following statement:
“MONOPOLY”.lastIndexOf(‘O’);- 1
- 3
- 2
- 5