61.
Which of the following should be the base case for the recursive solution of subset sum problem?

if(sum==0)
return true;

if(sum==0)
   return true;
if (n ==0 && sum!= 0) 
   return false; 

if (n ==0 && sum!= 0) 
return false; 

if(sum<0)
   return true;
if (n ==0 && sum!= 0) 
   return false; 

62.
According to Gabriel lame, how many steps does Euclid's algorithm require to solve a problem?

65.
What is the output of the following code?
#include<stdio.h>
void dec_to_bin(int n)
{
      int arr[31],len = 0,i;
      if(n == 0)
      {
          arr[0] = 0;
          len = 1;
      }
      while(n != 0)
      {
          arr[len++] = n % 2;
          n /= 2;
      }
      for(i=len-1; i>=0; i--)
        printf("%d",arr[i]);
}
int main()
{
     int n = 0;
     dec_to_bin(n);
     return 0;
}

67.
What is the condition for proper edge coloring of a graph?