Feedback Quiz
/**
 * Sums the numbers from num to 0 recursively. Assumes positive input.
 **/
public int Sum( int num ){
       if( num <= 0 )
              return 0;
       else{
              return Sum(num - 1);
       }
}
What kind of issue do you see in this code? *
What would you do to correct the issue? *
Next
Clear form
Never submit passwords through Google Forms.
This form was created inside of Mount Holyoke College.