What is return used for in java?
Answer / Vivek Chand
The 'return' keyword is used to exit a method and send a value back to the caller. If a method has a return type, it must return a value of that type.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is string builder in java?
what is collatration?
Can any one say how will sort map objects in java?
How we get some middle records in one table?
Does java trim remove newline?
What is array length?
What are listeners in java and explain ?
when,where and how to use abstract class and interface
What is difference between hash mapping and hash table?
if arraylist size is increased from initial size what is the size of arraylist...suppose initial is 100 , if i add 101 element what is the size...
Interface A { String test(); } Interface B { int test(); } Create a class AB which must implements both A & B interfaces.
What is the difference between state-based unit testing and interaction-based unit testing?