What is a lambda expression ? What's its use ?


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

Post New Answer

More Core Java Interview Questions

How does synchronized modifier work?

1 Answers   IBM,


What is final keyword in java?

0 Answers  


What is api in java?

0 Answers  


Distinguish method overloading and overriding

2 Answers   Tech Mahindra,


What is the difference between break and continue statements?

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  


How do you compare characters in java?

0 Answers  


did interface can implementation method ? i know its not possible but my interviewer said its possible ..but how..? any one have idea ???

7 Answers   IBM,


What is the purpose class.forname method?

0 Answers  


What is the difference between actual and formal parameters?

0 Answers  


What is actual difference between statement,prepared statement and callable statement and when we have to use it? pls post a answer with code and clear explanation. thanks

2 Answers  


What is bool mean?

0 Answers  


Categories