info@avatto.com
+91-9920808017
0. What will be the value returned by the following function, when it is called with a value 11? recur(int num) if ( ( num/2) !=0 ) return ( recur(num/2 ) * 10+num%2 ); else return 1;
Function does not return any value, because it goes into an infinite loop
11
1011
None of these
You must be logged in to post a comment.
Login with Facebook
Login with Google
Forgot your password?
Lost your password? Please enter your email address. You will receive mail with link to set new password.
Back to login
You must be logged in to post a comment.