InterviewSolution
Saved Bookmarks
| 1. |
Can A Function Be Defined Without A Return Statement? |
|
Answer» No, a function cannot be DEFINED without a RETURN statement because it has to return a value BACK to the calling environment. In CASE a RETURN statement is not defined, runtime error is RAISED. No, a function cannot be defined without a RETURN statement because it has to return a value back to the calling environment. In case a RETURN statement is not defined, runtime error is raised. |
|