164.

Will Finally block be executed if there is a return statement in the try block.

public static void Main()
{
  try{
   int a = 12;
   int b = 0;
   Console.WriteLine(a/b);
   throw new Exception("Main Exception");
  }
  catch(Exception ex){
    Console.WriteLine("Exception");
  }
  finally
  {
    Console.WriteLine("Finally");
  }
}

"Main Exception" Exception will never get processed because of the finally block