276.

Can a single Try block be followed by more than one catch block

try
{
}
catch (ArgumentNullException e)
{
}
catch (Exception e)
{
}