What is Hash Code in Java?

Answer Posted / yeswanth reddy

public class eng {

public static void main(String[] args) throws Exception {
int i=10;
//byte[] b;
System.out.write("yeswanth".getBytes());
System.out.write(i);

String s1="shiva";

System.out.println(s1.hashCode());

}



}

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the definition of tree ?

741


why using interface interface ?

1742


What is meant by final class?

759


How does the java compiler work?

713


What are the steps that are followed when two computers connect through tcp?

730


What are instance variables?

795


Explain wait() method of object class ?

843


What are variable arguments or varargs?

772


What is a function argument in java?

730


What is a stack class in java ?

819


Is it compulsory for a try block to be followed by a catch block in java for exception handling?

764


Can you declare a private method as static?

893


What is locale?

785


Explain java coding standards for interfaces?

837


How to change the priority of thread or how to set priority of thread?

750