Programming Interview Question
Question: What the below func would return? int Add() { int z = 0; try { int x = 3; int y = 5; z = x + y; return z; } finally { ...