What is float in java?


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

Post New Answer

More Core Java Interview Questions

how can u create the object with out new operator

2 Answers  


Is java a security risk?

0 Answers  


Explain inner classes ?

0 Answers  


Can a class be declared as static?

0 Answers  


What is import java util arraylist?

0 Answers  






Why is string class considered immutable?

0 Answers  


Write a code to show a static variable?

0 Answers  


How do you load an HTML page from an Applet ?

2 Answers  


WHAT IS THE MEANING OF ALL TYPE OF BUZZWORDS?

4 Answers  


interface X{ void m1(); void m2(); } class Child2 extends Object implements X { public void m1(){ System.out.println("Child2 M1"); } public void m2(){ System.out.println("Child2 M2"); } } public class ParentChildInfterfaceDemo { public static void main(String[] args){ X x = new Child2(); X x1 = new Child2(); x.m1(); x.m2(); x.equals(x1); } } Will the above code work? If yes? Can you please explain why the code x.equals(x1) will work as the equals method is called on interface reference vaiable?

2 Answers  


java is fullu object oriented or pure? why?

8 Answers  


How do you use compareto?

0 Answers  


Categories