150.
What is the output of this function described below -
int func()
{
try
{
return 1;
}
catch
{
return 2;
}
finally
{
return 3;
}
}
View Description
By function definition a function must be return a single value.