Why is java logo a cup of coffee?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Can a class be private in java?

0 Answers  


What is type conversion in java?

0 Answers  


How would you use Bubble Sort to sort the number of elements?

0 Answers   Genpact,


If I will write String s=new String("XYZ"); String s1=new String("XYZ"); if(s.equals(s1)){ sop("True"); } else{ sop("False"); } This program will give me "True". But When I am creating my own class suppose class Employee{ public Employee(String name); } Employee e= new Employee("XYZ"); Employee e1 = neew Employee("XYZ"); if(e.equals(e1)){ sop("True"); } else{ sop("False"); } Then it will give the output as "False". Can I know what is happening internally?

5 Answers  


Why java is call by value?

0 Answers  






What is a void method java?

0 Answers  


Can an arraylist be empty?

0 Answers  


What is a lightweight component?

0 Answers  


What is a null class?

0 Answers  


How is it possible for two string objects with identical values not to be equal under the == operator?

0 Answers  


What is consumer in java?

0 Answers  


When is the arraystoreexception thrown?

0 Answers  


Categories