25.
What will be the output of the following code?
int cnt=0;
void my_recursive_function(int n)
{
     if(n == 0)
     return;
     cnt++;
     my_recursive_function(n/10);
}
int main()
{
     my_recursive_function(123456789);
     printf("%d",cnt);
     return 0;
}

28.
Consider the following iterative code snippet to find the largest element:
int get_max_element(int *arr,int n)
{
      int i, max_element = arr[0];
      for(i = 1; i < n; i++)
          if(________)
          max_element = arr[i];
      return max_element;
}
Which of the following lines should be inserted to complete the above code?

29.
Which type of exception is raised by computer hardware when a code tries to access a block of memory that is not stored in physical memory?