What is the middleware?
Answers were Sorted based on User's Feedback
Answer / ravikiran
middleware is the one where we will write the busines logic
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sangith
which is used to connect two or more applications, allowing
them to exchange data.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the function of http?
How is final different from finally and finalize?
Can you have a constructor in abstract class?
Explain spliterator in java8?
Is an object null?
What is the purpose class.forname method?
Is {a, n, d} a palindrome? If you are given a random string, is it a palindrome or not?
What is the instance of an object?
What is high level language in computer?
Where is the singleton class used?
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?
What is classes in java?