Give us the name of the list layoutmanagers in java?


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

Post New Answer

More Core Java Interview Questions

What is the finalize method do?

0 Answers  


why java does not support mulitple inheritance directly?

3 Answers   TCS,


What is broken and continue statement?

0 Answers  


How to do a true java ping from windows?

0 Answers  


What is heterogeneous in java?

0 Answers  






What is object-oriented programming?

0 Answers  


What is java oops?

0 Answers  


What is difference between call by value and call by reference?

0 Answers  


Explain the difference between association, aggregation and inheritance relationships.

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  


Print Vertical traversal of a Binary Tree.

0 Answers   Amazon,


What is the common usage of serialization?

0 Answers  


Categories