Across
- 3. StringBuffer uses which memory
- 4. class is used to create an object whose character sequence is mutable
- 6. method ensures that the StringBuffer can hold at least the specified number of characters without needing to resize
- 8. method of String class is used to obtain character at specified index
- 10. result of "Java".compareTo("Java")
Down
- 1. method to add the string to the end of the current StringBuffer object.
- 2. character extraction method Copies characters from one string to a character array
- 5. string modification method which Removes leading and trailing whitespace from the string
- 7. the output of "abc".substring(1,3)
- 9. result of "hello".equalsIgnoreCase("Hello")
