Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| ||||
Interview Questions and Answers for 'Bally technologies' - 3 question(s) found - Order By Newest | ||||
| ||||
Ans. ConcurrentHashMap is a hashMap that allows concurrent modifications from multiple threads as there can be multiple locks on the same hashmap. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  java   collections   hashmap   map   concurrenthashmap   concurrenthashmap  concurrency   general electric   ge Asked in 32 Companies   rare | ||||
Related Questions | ||||
What is ConcurrentModificationException ? | ||||
What is a BlockingQueue? | ||||
What is concurrent interface ? | ||||
What is ConcurrentLinkedDeque ? | ||||
What is CopyOnWriteArrayList ? | ||||
What are the advantages and disadvantages of CopyOnWriteArrayList ? | ||||
Name few Concurrent Collection Classes ? | ||||
Difference between concurrentHashMap and HashTable ? | ||||
isnt the use of HashTable and ConcurrentHashMap the same, i.e providing synchronized map collection ? | ||||
| ||||
Ans. BlockingQueue is a Queue that supports operations that wait for the queue to become non-empty when retrieving and removing an element, and wait for space to become available in the queue when adding an element. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  blockingqueue   collections   java   concurrent collections Asked in 10 Companies | ||||
Related Questions | ||||
What is a BlockingQueue ? | ||||
Very frequently asked. Usually asked with questions related to String. Frequently asked at CTS / Cognizant | ||||
| ||||
Ans. Object that can't be changed after instantiation. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  java   oops   immutable  immutability Asked in 27 Companies basic   frequent | ||||
Try 2 Question(s) Test | ||||
Related Questions | ||||
Why is String immutable in Java ? | ||||
Why Char array is preferred over String for storing password? | ||||
How does making string as immutable helps with securing information ? How does String Pool pose a security threat ? | ||||
How is string object immutable if we can concat a string to it ? | ||||
How to implement an immutable class ? | ||||
What is an immutable class ? | ||||
Does Declaring an object "final" makes it immutable ? | ||||
Is String final in Java ? | ||||
What are stateless objects ? How are they different from immutable objects ? Which of these two is thread safe ? | ||||