nerdexam
FileMaker

FM0-307 · Question #5

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) FileMaker…

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) FileMaker FM0-307 : Practice Test 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

(47 responses)
  • A
    4% (2)
  • B
    13% (6)
  • C
    9% (4)
  • D
    74% (35)

Community Discussion

No community discussion yet for this question.

Full FM0-307 Practice