HashMap & HashSet are not only one of the frequently used data structures, but also one of the popular interview topics.
Q1. How does a HashMap store data?
…
HashMap & HashSet are not only one of the frequently used data structures, but also one of the popular interview topics.
Q1. How does a HashMap store data?
…
Q1. What are the non-final methods in Java Object class, which are meant primarily for extension? A1. The non-final methods are equals( ), … Read more ›...
Best Practice: “Classes should be immutable unless there’s a very good reason to make them mutable….If a class cannot be made immutable, limit its mutability as much as possible.” …...
Covers the power of enumand 3 design patterns that can be applied with the help of enums. Q1. Why is it a best practice to use enums over static final...
Q1. Which Java interface must be implemented by a class whose instances are transported via a Web service? a. Accessible b. BeanInfo c. Remote d. … Read more ›...
Q1. What are mock objects? A1. Mock objects are used in unit testing to ensure that your tests don’t fail due to volatility of the data changes. … Read more...
Q1. What is the difference between “==” and equals(..) method when comparing 2 objects?
A1.It is important to understand the difference between identity (i.e.
…