YouTube Icon

Interview Questions.

Top 100+ Java Equals And Hashcode Interview Questions And Answers - May 31, 2020

fluid

Top 100+ Java Equals And Hashcode Interview Questions And Answers

Question 1. When You Are Writing Equals() Method, Which Other Method Or Methods You Need To Override?

Answer :

Hashcode is the right answer. Since equals and hashCode have their contract, so overriding one and not different will wreck the settlement among them. By the manner this question can lead to an thrilling discussion, if Interviewer likes to head on deep e.G. He might also ask what are those contracts, what occurs if those contracts destroy etc. I like to present an example How equals and hashcode are used in hash primarily based collections e.G. Hashtable, that leaves fantastic impact extra regularly. You can also point out about compareTo() right here to score a few additional point, this approach should additionally need to be steady with equals, that's some other exciting query on our list.

Question 2. Can Two Objects Which Are Not Equal Have The Same Hashcode?

Answer :

YES, two objects, which aren't equal to equals() approach can nonetheless go back same hashCode. By the manner, that is one of the confusing little bit of equals and hashcode agreement. See Core Java, Volume 1 ninth Edition by using Cay S. Horstmann for  extra details.

Adv Java Interview Questions
Question three. How Does Get() Method Of Hashmap Works, If Two Keys Have The Same Hashcode?

Answer :

This is the follow-up of previous interview questions on equals and hashcode, in fact, every now and then this ends in a dialogue of the sooner point. When two key return equal hashcode, they emerge as within the same bucket. Now, for you to discover the proper cost, you used keys.Equals() approach to compare with key saved in each Entry of linked list there. Remember to point out keys.Equals() technique, because that is what interviewer is searching out.

Question 4. Where Have You Written Equals() And Hashcode In Your Project?

Answer :

This is to peer if the developer has even written those strategies or no longer. Of course, nearly all of Java programmer are uncovered to this, you could point out fee objects, Hibernate entities out of your area, where you have overridden equals and hashCode. Always gives examples out of your area and from your venture, as opposed to a trivial instance from a take a look at application, because if Interviewer is calling this question, it approach he's inquisitive about examples from your domain.

Adv Java Tutorial
Question five. Suppose Your Class Has An Id Field, Should You Include In Equals()? Why?

Answer :

This query is asked to one among my readers as Hibernate Interview question, well together with identification is not a terrific idea in equals() technique due to the fact this method need to test equality based totally upon content material and commercial enterprise policies. Also which include id, which is usually a database identifier and no longer available to brief object till they may be saved into the database.

J2EE Interview Questions
Question 6. What Happens If Equals() Is Not Consistent With Compare To() Method?

Answer :

This is an exciting questions, which requested in conjunction with equals() and hashCode() settlement. Some java.Util.Set implementation e.G. SortedSet or it's concrete implementation TreeSet uses compareTo() technique for evaluating gadgets. If compareTo() isn't regular manner does not return zero, if equals() approach returns actual, it is able to destroy Set agreement, which isn't always to keep away from any duplicates.

Question 7. What Happens If You Compare An Object To Null Using Equals()?

Answer :

When a null object is handed as a controversy to equals() technique, it should return fake, it must not throw NullPointerException, but if you name equals technique on reference, that is null it's going to throw NullPointerException. That’s why it’s higher to apply == operator for evaluating null e.G. If(item != null) item.Equals(anohterObject). By the way, in case you comparing String literal with any other String object you then higher call equals() technique at the String literal in place of recognized object to keep away from NPE, one of those simple tricks to keep away from NullPointerException in Java.

J2EE Tutorial Core Java Interview Questions
Question eight. What Is The Difference In Using Instanceof And Getclass() Method For Checking Type Inside Equals?

Answer :

This query turned into asked a couple of times, once in a while by means of looking at your equals() and hashCode implementation. Well, key difference comes from the factor that instanceof operator returns real, even supposing in comparison with subclass e.G. Subclass instanceof Superclass is genuine, but with getClass() it's false. By the usage of getClass() you make certain that your equals() implementation doesn't return proper if compared with subclass item. While in case you use instanceof operator, you come to be breaking symmetry rule for equals which says that if a.Equals(b) is real than b.Equals(a) should also be actual. Just update a and b with an instance of Superclass and Subclass, and you may become breaking symmetry rule for equals() method.

Question 9. How Do You Avoid Nullpointerexception, While Comparing Two Strings In Java?

Answer :

Since when compared to null, equals return false and doesn't throw NullPointerException, you could use this property to avoid NPE even as using evaluating String. Suppose you've got a regarded String "abc" and you are comparing with an unknown String variable str, then you definately must call equals as "abc".Equals(str), this will no longer throw Exception in thread Main: java.Lang.NullPointerException, despite the fact that str is null. On the alternative hand, if you call str.Equals("abc"), it will throw NPE. So be careful with this. By the way this is one of the Java coding great practices, which Java developer need to follow, even as the use of equals() technique.

JSP Interview Questions
Question 10. What Is The Difference Between "==" And Equals() Method In Java?

Answer :

One of the most classic interview query on equals(). It has been requested numerous instances at some stage in in past decade. I actually have additionally protected this question already. See here for a detailed dialogue on the way it have an effect on equality checking of String and Integer within the autoboxing international.

Equals vs == in Java

That's all on this list of Java interview Questions on Equals and HashCode methods in Java. It's one of the fundamental principles of Java programming language, however yet has numerous diffused things, that's unknown to many Java programmers. I strongly advocate to get your self without a doubt top on equals(), hashCode(), compareTo() and evaluate() technique, no longer simplest to do well on Java Interviews but also to jot down correct code in Java.

Core Java Tutorial
Question 11. There Are Two Objects A And B With Same Hashcode. I Am Inserting These Two Objects Inside A Hashmap. Hmap.Positioned(a,a); Hmap.Positioned(b,b); Where A.Hashcode()==b.Hashcode() Now Tell Me How Many Objects Will Be There Inside The Hashmap?

Answer :

There can be  distinctive elements with the same hashcode. When two factors have the identical hashcode then Java makes use of the equals to further differentation. So there may be one or two items relying at the content material of the items.

Java-Springs Interview Questions
Question 12. What Is The Use Of Hashcode In Java ?

Answer :

Hashcode is used for bucketing in Hash implementations like HashMap, HashTable, HashSet and so on. The value received from hashcode() is used as bucket range for storing elements. This bucket wide variety is the address of the detail within the set/map. When you do contains() then it will take the hashcode of the element, then look for the bucket in which hashcode factors to and if greater than 1 detail is discovered in the identical bucket (more than one objects can have the identical hashcode) then it makes use of the equals() method to evaluate if object are equal, after which decide if comprise() is actual or fake, or decide if detail may be delivered inside the set or no longer.

Adv Java Interview Questions
Question thirteen. Why String Is Popular Hashmap Key In Java?

Answer :

Since String is immutable, its hashcode is cached on the time of creation and it doesn’t need to be calculated again. This makes it a amazing candidate for key in a Map and it’s processing is fast than different HashMap key gadgets. This is why String is broadly speaking used Object as HashMap keys.

JSP Tutorial
Question 14. Public Class A 
Public Static Void Main(string Args[])
Final String S1="job";
Final String S2="seeker";
String S3=s1.Concat(s2);
String S4="jobseeker";
System.Out.Println(s3==s4); // Output 1
System.Out.Println(s3.Hashcode()==s4.Hashcode()); Output 2


What Will Be The Output 1 And Output 2 ?

Answer :

S3 and S4 are pointing to different reminiscence vicinity and as a result Output 1 can be false.

Hash code is generated for use as hash key in a number of the collections in Java and is calculated the usage of string characters and its duration. As they both are same string literals, and for this reason their hashcode is equal.Output 2 may be proper.

Question 15. What Is The Use Of Hashcode In Objects ?

Answer :

Hashcode is used for bucketing in Hash implementations like HashMap, HashTable, HashSet etc.

JMS(Java Message Service) Interview Questions
Question sixteen. Why Is String Immutable In Java ?

Answer :

1. String Pool:

When a string is created and if the string already exists within the pool, the reference of the prevailing string might be back, instead of developing a brand new item. If string is not immutable, changing the string with one reference will cause the incorrect fee for the alternative references.

2. To Cache its Hashcode:

If string isn't immutable, One can alternate its hashcode and as a result no longer healthy to be cached.

Three. Security:

String is extensively used as parameter for lots java training, e.G. Network connection, establishing files, and so on. Making it mutable would possibly possess threats because of interception with the aid of the opposite code segment.

Java-Springs Tutorial
Question 17. What Are The Methods Of Object Class ?

Answer :

clone() - Creates and returns a copy of this item.
Equals() - Indicates whether or not a few different object is "same to" this one.
Finalize()  - Called with the aid of the garbage collector on an object whilst rubbish collection determines that there aren't any more references to the object
getClass() - Returns the runtime class of an item.
HashCode() - Returns a hash code price for the item.
ToString() - Returns a string illustration of the item.
Notify(), notifyAll(), and wait() - Play a component in synchronizing the sports of independently jogging threads in a application.
Java applet Interview Questions
Question 18. What Is Rule Regarding Overriding Equals And Hashcode Method ?

Answer :

A Class need to override the hashCode method if its overriding the equals method.

J2EE Interview Questions




CFG