Question: what missing code should be added to this class to ensure that calling factorial ( 5 ) returns 1 2 0 ? class TEST feature

what missing code should be added to this class to ensure that calling factorial(5) returns 120? class TEST feature factorial(n: INTEGER): INTEGER do if n <=1 then Result :=1 else Result := n *___ end end end
a.
1
b.
factorial(n -2)
c.
n * factorial(n -1)
d.
factorial(n -1)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!