Adv.Java Lab Viva 3/4/2025

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