Q4Numerical4 Marks31 Aug 2025
Consider the following procedure:
What will the return value of DoSomething(631) be?
```
Procedure DoSomething(n)
if(n < 10){
return n
}
else{
return (n % 10) + DoSomething(n / 10)
}
End DoSomething
```
Press Enter to check.