What is the java project architecture?


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

Post New Answer

More Core Java Interview Questions

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  


Is boolean a data type in java?

0 Answers  


What is functional interface in java example?

0 Answers  


What do you mean by compiler?

0 Answers  


Define the term string pool?

0 Answers  






make a method which any number and any type of argument and print sum of that arguments.....

0 Answers  


Write a program to show whether a graph is a tree or not using adjacency matrix.

0 Answers   Amazon,


Why runnable interface is used in java?

0 Answers  


What is the difference between notify and notifyall method?

0 Answers  


Is 0 a real number?

0 Answers  


what is difference between business delegate and data access object(dao)? in java?

1 Answers  


How do you sort an array in java?

0 Answers  


Categories