0% found this document useful (0 votes)
39 views

Questions and Exercises: Characters and Strings

1. This document contains questions and exercises about strings and characters in Java. 2. The questions ask about string length, character extraction, substring operations, and string concatenation. 3. The exercises ask the reader to concatenate two strings, write a program to display initials from a full name, and write a program to check if one string is an anagram of another.

Uploaded by

Kalpana Bendale
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views

Questions and Exercises: Characters and Strings

1. This document contains questions and exercises about strings and characters in Java. 2. The questions ask about string length, character extraction, substring operations, and string concatenation. 3. The exercises ask the reader to concatenate two strings, write a program to display initials from a full name, and write a program to check if one string is an anagram of another.

Uploaded by

Kalpana Bendale
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Questions and Exercises: Characters and Strings

Questions

1. What is the initial capacity of the following string builder?


2. StringBuilder sb = new StringBuilder("Able was I ere I saw Elba.");

3. Consider the following string:


4. String hannah = "Did Hannah see bees? Hannah did.";

a. What is the value displayed by the expression hannah.length()?

b. What is the value returned by the method call hannah.charAt(12)?

c. Write an expression that refers to the letter b in the string referred to by hannah.

5. How long is the string returned by the following expression? What is the string?
6. "Was it a car or a cat I saw?".substring(9, 12)
7. , original.charAt(4));
8. /*4*/ result.append(original.substring(1,4));
9. /*5*/ result.insert(3, (original.substring(index, index+2) + " "));
10.
11. System.out.println(result);
12. }
13. }
Exercises

1. Show two ways to concatenate the following two strings together to get the string "Hi, mom.":
2. String hi = "Hi, ";
3. String mom = "mom.";

4. Write a program that computes your initials from your full name and displays them.

5. An anagram is a word or a phrase made by transposing the letters of another word or phrase; for
example, "parliament" is an anagram of "partial men," and "software" is an anagram of "swear oft."
Write a program that figures out whether one string is an anagram of another string. The program
should ignore white space and

You might also like