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

What’s the difference between callable and runnable?

0 Answers  


What are the three parts of a lambda expression? What is the type of lambda expression?

0 Answers  


What is percentage in java?

0 Answers  


How does linkedlist work in java?

0 Answers  


Which collection does not allow duplicates in java?

0 Answers  






Explain the advantages of packages in java?

0 Answers  


I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }

4 Answers   Cap Gemini,


Explain some best practices you would apply while using collection in java?

0 Answers  


define polymorphism in java

0 Answers  


Why constructor has no return type?

0 Answers  


Explain inheritance in java?

0 Answers  


To obtain design information about an object, which class in used?

1 Answers  


Categories