What is return code?
Answer / Sonali Parasar
In Java, a 'return code' or 'return value' is the value that a method returns after its execution to the point where it was called. This value can be used to indicate whether the method has completed successfully or encountered an error.
| Is This Answer Correct ? | 0 Yes | 0 No |
String is an immutable object. Then how can the following code be justified. String s1 = ?ABC?; String s1 = s1+?XYZ?; s.o.p(s1); The output is ABCXYZ, which is the value of s1 ?
6 Answers Flextronics, Keane India Ltd,
Write a program to print 15 random numbers using foreach of java 8?
What are the types of methods in java?
how to transactions(Bank transactions) in business process in ejb?
Can Applet have constructors?
What is array and arraylist in java?
what is the final keyword denotes in java?
Can we override constructors in java?
What is method in research paper?
What is diffrance between FINALIZE() & FINALLY ?
What is thread synchronization in java?
There are two classes named classa and classb. Both classes are in the same package. Can a private member of classa can be accessed by an object of classb?