Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Java String Handling Tutorial

  1. Difference between `String` and `StringBuffer`
  2. Compare two strings in Java
  3. StringBuilder class
  4. Convert a string to uppercase
  5. Purpose of the `trim()` method
  6. Check if a string contains a specific substring
  7. Purpose of the `split()` method
  8. Reverse a string
  9. Purpose of the `charAt()` method
  10. Check if a string is numeric
  11. Purpose of the `indexOf()` method
  12. Convert a string to a character array
  13. Purpose of the `replace()` method
  14. Concatenate multiple strings
  15. Concept of string immutability
  16. Purpose of the `substring()` method
  17. Convert an integer to a string
  18. Purpose of the `toLowerCase()` method
  19. Check if a string is empty
  20. Purpose of the `endsWith()` method
  21. Purpose of the `valueOf()` method
  22. Concept of string interning
  23. Convert a string to an integer
  24. Purpose of the `join()` method
  25. Remove all whitespaces from a string
  26. Purpose of the `matches()` method
  27. Extract digits from a string
  28. Purpose of the `toCharArray()` method
  29. Check if a string starts with a specific prefix
  30. Purpose of the `format()` method

1. What is the difference between `String` and `StringBuffer` in Java?

Answer: The main difference is that `String` is immutable, whereas `StringBuffer` is mutable. This means that once a `String` object is created, it cannot be changed, whereas you can modify the content of a `StringBuffer` object.

                
// Example code
String str = "Hello";
StringBuffer stringBuffer = new StringBuffer("Hello");
                
            

2. How can you compare two strings in Java?

Answer: In Java, you can compare two strings using the `equals()` method for content comparison and `==` for reference comparison. It's generally recommended to use `equals()` for comparing content.

                
// Example code
String str1 = "Hello";
String str2 = "World";

// Content comparison
boolean contentEqual = str1.equals(str2);

// Reference comparison
boolean referenceEqual = (str1 == str2);
                
            

3. Explain the purpose of the `StringBuilder` class in Java.

Answer: `StringBuilder` is similar to `StringBuffer` but is not synchronized, making it more efficient in a single-threaded environment. It is used when you need a mutable sequence of characters, and thread safety is not a concern.

                
// Example code
StringBuilder stringBuilder = new StringBuilder("Java");
stringBuilder.append(" is powerful");
                
            

4. How can you convert a string to uppercase in Java?

Answer: You can convert a string to uppercase in Java using the `toUpperCase()` method.

                
// Example code
String originalString = "hello";
String uppercaseString = originalString.toUpperCase();
                
            

5. What is the purpose of the `trim()` method in Java?

Answer: The `trim()` method is used to remove leading and trailing whitespaces from a string in Java.

                
// Example code
String stringWithSpaces = "   Hello, World!   ";
String trimmedString = stringWithSpaces.trim();
                
            

6. How can you check if a string contains a specific substring in Java?

Answer: You can use the `contains()` method to check if a string contains a specific substring in Java.

                
// Example code
String mainString = "Hello, World!";
String subString = "World";

boolean containsSubstring = mainString.contains(subString);
                
            

7. Explain the purpose of the `split()` method in Java.

Answer: The `split()` method is used to split a string into an array of substrings based on a specified delimiter.

                
// Example code
String sentence = "Java is a versatile programming language";
String[] words = sentence.split("\\s"); // Split based on whitespace
                
            

8. How can you reverse a string in Java?

Answer: You can reverse a string in Java using either the `StringBuilder` or by iterating through the characters of the string.

                
// Example code using StringBuilder
String originalString = "Hello";
String reversedString = new StringBuilder(originalString).reverse().toString();
                
            

9. What is the purpose of the `charAt()` method in Java?

Answer: The `charAt()` method is used to retrieve the character at a specified index in a string.

                
// Example code
String text = "Java";
char firstChar = text.charAt(0); // Retrieves the character 'J'
                
            

10. How can you check if a string is numeric in Java?

Answer: You can use the `matches()` method with a regular expression to check if a string is numeric in Java.

                
// Example code
String numericString = "12345";
boolean isNumeric = numericString.matches("\\d+"); // Returns true
                
            

11. Explain the purpose of the `indexOf()` method in Java.

Answer: The `indexOf()` method is used to find the index of the first occurrence of a specified substring within a string.

                
// Example code
String text = "Hello, World!";
int indexOfWorld = text.indexOf("World"); // Returns the index 7
                
            

12. How can you convert a string to a character array in Java?

Answer: You can use the `toCharArray()` method to convert a string to a character array in Java.

                
// Example code
String str = "Java";
char[] charArray = str.toCharArray();
                
            

13. What is the purpose of the `replace()` method in Java?

Answer: The `replace()` method is used to replace occurrences of a specified character or substring with another character or substring in a string.

                
// Example code
String originalString = "Hello, Java!";
String modifiedString = originalString.replace("Java", "World");
                
            

14. How can you concatenate multiple strings in Java?

Answer: You can use the `+` operator or the `concat()` method for string concatenation in Java.

                
// Example code using +
String str1 = "Hello";
String str2 = "World";
String result = str1 + ", " + str2;

// Example code using concat()
String concatResult = str1.concat(", ").concat(str2);
                
            

15. Explain the concept of string immutability in Java.

Answer: In Java, once a string is created, its value cannot be changed. Any operation that appears to modify a string actually creates a new string.

16. What is the purpose of the `substring()` method in Java?

Answer: The `substring()` method is used to extract a portion of a string, starting from a specified index up to the end of the string or up to a specified index.

                
// Example code
String text = "Java Programming";
String subString = text.substring(5); // Returns "Programming"
                
            

17. How can you convert an integer to a string in Java?

Answer: You can use the `String.valueOf()` method or concatenate the integer with an empty string to convert an integer to a string in Java.

                
// Example code using String.valueOf()
int number = 42;
String strNumber = String.valueOf(number);

// Example code using concatenation
String strResult = number + "";
                
            

18. Explain the purpose of the `toLowerCase()` method in Java.

Answer: The `toLowerCase()` method is used to convert all characters in a string to lowercase.

                
// Example code
String originalString = "HELLO";
String lowercasedString = originalString.toLowerCase(); // Returns "hello"
                
            

19. How can you check if a string is empty in Java?

Answer: You can use the `isEmpty()` method to check if a string is empty in Java.

                
// Example code
String emptyString = "";
boolean isEmpty = emptyString.isEmpty(); // Returns true
                
            

20. Explain the purpose of the `endsWith()` method in Java.

Answer: The `endsWith()` method is used to check whether a string ends with a specified suffix.

                
// Example code
String fileName = "document.txt";
boolean endsWithTxt = fileName.endsWith(".txt"); // Returns true
                
            

21. What is the purpose of the `valueOf()` method in Java?

Answer: The `valueOf()` method is used to convert data of different types, including strings, to their string representation.

                
// Example code
int number = 42;
String strNumber = String.valueOf(number);
                
            

22. Explain the concept of string interning in Java.

Answer: String interning is a process in Java where multiple string objects with the same content share the same memory space to improve performance and reduce memory usage.

23. How can you convert a string to an integer in Java?

Answer: You can use the `parseInt()` method of the `Integer` class or the `valueOf()` method to convert a string to an integer in Java.

                
// Example code using parseInt()
String strNumber = "42";
int number = Integer.parseInt(strNumber);

// Example code using valueOf()
int anotherNumber = Integer.valueOf(strNumber);
                
            

24. Explain the purpose of the `join()` method in Java.

Answer: The `join()` method is used to concatenate multiple strings with a specified delimiter.

                
// Example code
String[] words = {"Java", "is", "powerful"};
String joinedString = String.join(" ", words); // Returns "Java is powerful"
                
            

25. How can you remove all whitespaces from a string in Java?

Answer: You can use the `replaceAll()` method with a regular expression to remove all whitespaces from a string in Java.

                
// Example code
String stringWithSpaces = "   Java is fun   ";
String noSpacesString = stringWithSpaces.replaceAll("\\s", "");
                
            

26. Explain the purpose of the `matches()` method in Java.

Answer: The `matches()` method is used to check whether a string matches a specified regular expression.

                
// Example code
String email = "example@email.com";
boolean isEmailValid = email.matches("[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}");
                
            

27. How can you extract digits from a string in Java?

Answer: You can use regular expressions or iterate through the characters of the string to extract digits from a string in Java.

                
// Example code using regular expression
String textWithDigits = "Hello123World";
String extractedDigits = textWithDigits.replaceAll("\\D", "");
                
            

28. Explain the purpose of the `toCharArray()` method in Java.

Answer: The `toCharArray()` method is used to convert a string to an array of characters.

                
// Example code
String text = "Java";
char[] charArray = text.toCharArray();
                
            

29. How can you check if a string starts with a specific prefix in Java?

Answer: You can use the `startsWith()` method to check if a string starts with a specific prefix in Java.

                
// Example code
String text = "Hello, World!";
boolean startsWithHello = text.startsWith("Hello"); // Returns true
                
            

30. Explain the purpose of the `format()` method in Java.

Answer: The `format()` method is used to create a formatted string using a specified format string and arguments.

                
// Example code
String formattedString = String.format("Hello, %s!", "Java");
                
            
©2024 WithoutBook