Question: What does the following code try to accomplish? Function MyFunction(Num As Long) Dim i As Long, answer As Long answer = 1 For i =
What does the following code try to accomplish?
Function MyFunction(Num As Long)
Dim i As Long, answer As Long
answer = 1
For i = 1 to Num
answer = answer * i
Next i
MyFunction = answer
End Function
Group of answer choices
Calculate the sum of integers from 1 to Num
Calculate the present value of Num cash flows
Calculate the area of a rectangle
Calculate the factorial of Num
Next
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
