InterviewSolution
Saved Bookmarks
| 1. |
Is It Possible To Make Procedure Or Function Part Of The If Then Else Block? |
|
Answer» Procedure cannot be CALLED from within the IF THEN ELSE block; however, functions can become a PART of the IF THEN ELSE block because functions RETURN the value in such a manner that the FUNCTION call in the block acts LIKE a variable. Procedure cannot be called from within the IF THEN ELSE block; however, functions can become a part of the IF THEN ELSE block because functions return the value in such a manner that the function call in the block acts like a variable. |
|