Ask Question
1 November, 21:37

Examine the following piece of code and determine the data type of the function's return value.

Function Real sum (Integer num1, Integer num2)

Declare Integer result Set result = num1 + num2

Return result

End Function

+4
Answers (1)
  1. 1 November, 21:51
    0
    The data type of the return value is Integer

    Explanation:

    Integer type follows the declare keyword, it is expected that the sum of two integers to be an integer too.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Examine the following piece of code and determine the data type of the function's return value. Function Real sum (Integer num1, Integer ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers