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...


Any exceptions are there which are not caught by any catch
blocks?
what are they?

Answers were Sorted based on User's Feedback



Any exceptions are there which are not caught by any catch blocks? what are they?..

Answer / amit dhiman [mcp, mca, bca]

propagates unhandled exceptions, Can't be called by any
Catch blocks

Is This Answer Correct ?    5 Yes 0 No

Any exceptions are there which are not caught by any catch blocks? what are they?..

Answer / piyush sharma

1) If you are writting managed Code and using proper try
catch block then there
is no such exception which cannot be caught. Yes, But
sometimes it happens
that you have written correct try catch block but exception
is still
unhandled. This type of exception is called First Chance
Exception. As you
can come across it while developing web services or working
with threads.

Now What is a first chance exception?
When an application is being debugged, the debugger gets
notified whenever
an exception is encountered At this point, the application
is suspended and
the debugger decides how to handle the exception. The first
pass through this
mechanism is called a "first chance" exception. Depending
on the debugger's
configuration, it will either resume the application and
pass the exception
on or it will leave the application suspended and enter
debug mode. If the
application handles the exception, it continues to run
normally.

2)The only one I can think of
offhand is StackOverflowException, since a catch block, or
any of the
global exception handlers you can write require stack space
in order to
execute. If you're out of stack you can't call anything...
including an
exception handler.

Is This Answer Correct ?    2 Yes 0 No

Any exceptions are there which are not caught by any catch blocks? what are they?..

Answer / rangaramesh

Guys all you said some what right but you said some generic
answer. Some of the exception we can't handle in the catch
block ex "Fatal Errors,Virtual memory"

Is This Answer Correct ?    2 Yes 0 No

Any exceptions are there which are not caught by any catch blocks? what are they?..

Answer / sunil kumar

Yes
"StackOverFlowException" doesn't get catch by any catch block

Is This Answer Correct ?    2 Yes 1 No

Any exceptions are there which are not caught by any catch blocks? what are they?..

Answer / parmjit

No there is no exception in C# which cannot be handled by
catch block.

All type of exception can be handled by a catch block.

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More C Sharp Interview Questions

When a new instance of a type is created, what is the type of method implicitly called?

2 Answers  


What framework is used for performance testing/load testing?

0 Answers   TCS,


Does the system.exception class have any cool features?

0 Answers  


Does C# support multiple inheritance?

5 Answers  


What is managed or unmanaged code?

0 Answers  


Can we override interface method?

0 Answers  


How we convert private assembly into public assembly?

0 Answers   Wipro,


What is indexer c#?

0 Answers  


Explain how to parse a datetime string?

0 Answers  


What does static mean in c sharp?

0 Answers  


How does bitwise xor work?

0 Answers  


What Is The Difference Between ViewState and SessionState?

1 Answers   Fiserv,


Categories