What is the main use of java?


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

Post New Answer

More Core Java Interview Questions

Can you explain the private protected field modifier?

0 Answers  


How to find the largest value from the given array.

0 Answers  


What is a bufferedreader?

0 Answers  


public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?

6 Answers  


Can we instantiate Interfaces?

7 Answers   Ericsson,


How are this() and super() used with constructors?

9 Answers  


What is deadlock and how to avoid this?

2 Answers  


Can you give few examples of final classes defined in java api?

0 Answers  


What is the purpose of the strictfp keyword?

0 Answers  


What is off heap memory?

0 Answers  


What does the “final” keyword mean in front of a variable? A method? A class?

0 Answers  


Which number is denoted by leading zero in java?

0 Answers  


Categories