nerdexam
FileMaker

FM0-308 · Question #125

Given the following two custom functions: SeriesSum (num) = Case (num > 0 ; num + SeriesSum (num - 1)) SeriesSum2 (num; total) = Case (num > 0; SeriesSum2 (num - 1; total + num); total) Which…

The correct answer is D. SeriesSum (4) returns the same result as SeriesSum2 (3 ; 4). See the full explanation below for the reasoning.

Question

Given the following two custom functions:

SeriesSum (num) = Case (num > 0 ; num + SeriesSum (num - 1)) SeriesSum2 (num; total) = Case (num > 0; SeriesSum2 (num - 1; total + num); total) Which statement is true in this situation?

Options

  • ASeriesSum (- 5) will result in?.
  • BSeriesSum2 (2; 3) will result in?.
  • CNeither function can compute a result if num = 25000.
  • DSeriesSum (4) returns the same result as SeriesSum2 (3 ; 4).

How the community answered

(48 responses)
  • A
    4% (2)
  • B
    2% (1)
  • C
    10% (5)
  • D
    83% (40)

Community Discussion

No community discussion yet for this question.

Full FM0-308 Practice