Top 10 Java String interview Question answers - Advanced
10 Java String interviews Question answers
String interview questions in Java is one of Integral part of any Core Java or J2EE interviews. No one can deny the importance of String and how much it is used in any Java application irrespective of whether its core Java desktop application, web application, Enterprise application or Mobile application. The string is one of the fundamental of Java programming language and correct understanding of String class is a must for every Java programmer. What makes String interview questions in Java even more interesting is the special status of String in terms of features and privileges it has, like the + operator is kind of overloaded to perform String concatenation despite the fact that Java does not support operator overloading. There is a separate String pool to store String literal etc.
In this article we will some frequently asked question on String in a Java interview which focuses on range of features like immutability, thread-safety, security, performance, memory consumption, mutable counterparts of String e.g. StringBuilder and StringBuffer, comparing String instances in Java, equals() vs == check for String, using String as key in HashMap, storing String on array and List etc.
Java String Interview Questions and Answers

1) What is String in Java? Is String is data type?
String in Java is not a primitive data type like int, long or double. The string is a class or in more simple term a user defined type. This is confusing for someone who comes from C background. String is defined in java.lang package and wrappers its content in a character array. String provides equals() method to compare two String and provides various other methods to operate on String like toUpperCase() to convert String into upper case, replace() to replace String contents, substring() to get substring, split() to split long String into multiple String.2) Why is String final in Java?
The string is final by design in Java, some of the points which make sense why String is final is Security, optimization and to maintain a pool of String in Java. for details on each of this point see Why String is final in Java.3) What is the difference between String and StringBuffer in Java?
This is probably the most common question on String I have seen in Java interviews. Though String and StringBuffer are two different class they are used in the context of concatenating two Strings, Since String is immutable in Java every operation which changes String produces new String, which can be avoided by using StringBuffer. See String vs StringBuffer for more details.4) What is the difference in String on C and Java?
If you have mentioned C in your resume, then you are likely to face this String interview question. Well, C String and Java String are completely different to each other, C String is a null terminated character array while String in Java is an Object. Also, String is more feature rich in Java than C.5) Why char array is better than String for storing password?
This String interview question is debatable and you might not agree with interviewer but this is also a chance to show that how deep and differently you can think of. One of the reasons which people give Why you should store a password in char array over String is related to immutability since it's not possible to erase contents of String but you can erase contents of a char array. See Why char array preferred over String for a password for a complete discussion.6) How do you compare two String in Java?
This is another common String interview question which appears on fresher level interviews. There are multiple ways to compare two String like equals() method, equalsIgnoreCase() etc, You can also see 4 ways to compare String in Java for more examples. The main thing which interviewer checks is that whether candidate mentioned equality operator or not "==", comparing String with equality operator is a common mistake which works in some case and doesn't work in other. next String interview question is follow-up up of this.7) Can we compare String using == operator? What is the risk?
As discussed in previous String question, You can compare String using equality operator but that is not suggested or advised because equality operator is used to compare primitives and equals() method should be used to compare objects. As we have seen in the pitfall of autoboxing in Java that how equality operator can cause a subtle issue while comparing primitive to Object, anyway String is free from that issue because it doesn't have a corresponding primitive type and not participate in autoboxing.Almost all the time comparing String means comparing contents of String i.e. characters and equals() method is used to perform character-based comparison. equals() return true if two String points to the same object or two String has same contents while == operator returns true if two String object points to the same object but return false if two different String object contains same contents. That explains why sometimes it works and sometimes it doesn't.
In short always use equals method in Java to check equality of two String object.
8) How does substring method work in Java?
This is one of the tricky Java question relate to String and until you are familiar with the internals of String class, it's difficult to answer. Substring shares same character array as original String which can create a memory leak if original String is quite big and not required to retain in memory but unintentionally retained by substring which is very small in size and prevents large array from begin claimed during Garbage collection in Java.9) What is String pool in Java?
Another tough Java question asked in String interview. String pool is a special storage area in Java heap, mostly located on PerGen space, to store String literals like "ABC". When Java program creates a new String using String literal, JVM checks for that String in the pool and if String literal is already present in the pool than the same object is returned instead of creating a whole new object. String pool check is only performed when you create String as literal, if you create String using new() operator, a new String object will be created even if String with the same content is available in the pool.10) What does the intern() method do in Java?
As discussed in a previous String interview question, String object created by new() operator is by default not added in String pool as opposed to String literal. The intern method allows putting a String object into a pool.11) Is string thread-safe in Java?
If you are familiar with the concept of immutability and thread-safety you can easily answer this String interview question in Java. Since String is immutable, it is thread-safe and it can be shared between multiple threads without external synchronization.If you are seriously preparing for Java interviews and do not want to leave any stone unturned, I strongly suggest you go through questions given in Java Programming Interview Exposed, one of the rare book which covers all important topics for Java interviews.
String-based Coding Questions
These questions are mostly based upon Java's implementation of String and you can only answer them well if you have good knowledge of java.lang.String class. But, String is very general data structure and you will find it in almost all programming and script language e.g. C, C++, C#, Python, Perl or Ruby. That's why I am going to share some more String based coding question, which is not Java-specific. You can solve these question in any programming language as they are mostly logic based programming questions.1) Write a Java program to reverse String in Java without using any API? (solution)
This means you can not use StringBuffer's reverse() method or any of String utility method, all you can have is a character array for reversing contents.
2) Write a Program to check if a String is a palindrome or not? (solution)
For example, a String e.g. "madam" is a palindrome but "book" is not a palindrome. You also need to solve this question without taking any help from Java String API.3) Write a Java program to check if two String are Anagram or not? (solution)
You need to write method e.g. isAnagram(String first, String second) which will return true if second String is an anagram of the first string. An anagram must contain the same number of characters and exactly same characters but in different order e.g. top and pot, or army and mary.4) Write a method in Java to remove any character from String? (solution)
For example, you need to write method remove(String word, char removeThis), this method should return a String without character, which is asked to remove. you can use indexOf(), substring() and similar methods from String class, but your method must handle corner cases e.g. passing null or empty String, String containing just one character etc.
5) Write a method to split a comma separated String in Java? (solution)
6) Write Java program to print all permutations of a String e.g. passing "ABC" will print all permutations like "BCA", "CBA" etc (solution)
If you are hungry for more String based coding question, you can also check the Cracking the Coding Interview book, a collection of 189 programming questions and solutions from various programming job interviews of reputed tech companies like Amazon, Google, Facebook, and Microsoft.
That's all about Java String interview question and answers. In Summary, there are a lot of specifics about String which needs to be known for anyone who has started Java programming and these String question will not just help to perform better on Java Interviews but also opens the new door of learning about String. I didn't know much String related concepts until I come across these question which motivated to research and learns more about String in Java.
Further Learning
Data Structures and Algorithms: Deep Dive Using Java
Java Fundamentals: The Java Language
Complete Java Masterclass
Other Java String tutorials and questions from Javarevisited Blog
- How to convert Date to String in Java
- How to convert Enum to String in Java
- How to create comma separated String from Collection in Java
- How to convert String to Double in Java
- How to reverse String in Java with recursion
- How to format String in Java
Join the conversation