Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Can two catch blocks be executed?

Answers were Sorted based on User's Feedback



Can two catch blocks be executed?..

Answer / gyana

NO,we cannot use two catch block.It can't be executed.

Is This Answer Correct ?    2 Yes 3 No

Can two catch blocks be executed?..

Answer / guest

yes. not only 2 catch blocks but 'N' number of catch blocks
associated with respective try block can be executed.

Is This Answer Correct ?    1 Yes 7 No

Can two catch blocks be executed?..

Answer / shadab alam

Yes Yes
Two catch block can be executed at one time.
The example is given bellow .

using System;
class ab
{


public static void Main()

{
int []arr=new int[2]{2,3};
int a=9;
int b=0;
try
{
int r=a/b;
}
catch(DivideByZeroException d)
{
Console.WriteLine(d.ToString());
}
catch(Exception aa)
{
Console.WriteLine(aa.ToString());
}
finally
{
Console.WriteLine(arr[3]);
}

}

}


output will be
-------------
System.DivideByZeroException: Attempted to divide by zero.
at ab.Main()

Unhandled Exception: System.IndexOutOfRangeException: Index
was outside the boun
ds of the array.
at ab.Main()

Is This Answer Correct ?    6 Yes 16 No

Post New Answer

More C Sharp Interview Questions

What namespaces are necessary to create a localized application?

2 Answers   Rolta, Siebel Systems, Visual Soft,


What are the important concepts in OOPS

5 Answers   Fulcrum Logic,


The int maps to which C# keyword in .NET type?

0 Answers   Siebel,


Can you describe iuknown interface in short?

0 Answers  


What are the differences between events and delegates in c#?

0 Answers  


Can a structure inherit a class.

3 Answers   Infosys, Synechron,


How many aware interfaces are there?

0 Answers  


What is the difference between method and function in c#?

0 Answers  


What is the main purpose of linq?

0 Answers  


how to implement a web service in .net

0 Answers  


what are advantages and disadvantages of Microsoft-provided data provider classes in ADO.NET?

1 Answers   4Cplus,


Explain the accessibility modifier protected internal?

0 Answers  


Categories