150.

What is the output of this function described below -

int func()
{
  try
  {
    return 1;
  }

  catch
  {
    return 2;
  }

  finally
  {
    return 3;
  }
}

By function definition a function must be return a single value.