Search Interview Questions | Click here and help us by providing the answer. Click Correct / Improve and please let us know.  | 
  | 
|||
| 
       | ||||
| Core java - Interview Questions and Answers for 'Booking.com' - 5 question(s) found - Order By Newest | ||||
  | ||||
| Ans. They are different the way their elements are stored in memory. TreeMap stores the Keys in order whereas HashMap stores the key value pairs randomly. | ||||
  | ||||
| Ans. Volatile is a declaration that a variable can be accessed by multiple threads and hence shouldnt be cached. | ||||
  | ||||
| Ans. This is the exception that is thrown when we try to modify the non concurrent collection class while iterating through it. | ||||
  | ||||
| Ans. public void checkIfAnagram(String str1,String str2){ boolean anagram = true; for(char c:str1.toCharArray()){ if(!str2.contains(String.valueOf(c))){ System.out.println("Strings are Anagrams"); anagram = false; } if(anagram == true){ System.out.println("Strings are not Anagrams"); } } }  | ||||
  | ||||
| Ans. https://www.geeksforgeeks.org/check-for-balanced-parentheses-in-an-expression/ | ||||