Search Interview Questions | Click here and help us by providing the answer. Click Correct / Improve and please let us know. |
|
|||
|
| ||||
| Interview Questions and Answers for 'Fidelity information services (fis)' - 4 question(s) found - Order By Rating | ||||
| ||||
| Ans. ConcurrentMap is an interface and it is a member of the Java Collections Framework. It represents a Map that is capable of handling concurrent access to it without affecting the consistency of entries in a map. ConcurrentMap interface present in java.util.concurrent package. HashMap operations are not synchronized, while Hashtable provides synchronization. Though Hashtable is thread-safe, it is not very efficient. To solve this issue, the Java Collections Framework introduced ConcurrentMap in Java 1.5. | ||||
| ||||
| Ans. Abstraction is a process of hiding the implementation details and describing only the functionality to the user. | ||||
| ||||
| ||||
| Ans. @OneToMany(cascade = CascadeType.ALL) @JoinColumn(name = "student_id") private Set countries; | ||||