Explain about throw keyword?

Answers were Sorted based on User's Feedback



Explain about throw keyword?..

Answer / vibhor shukla

throw is used to throw an exception from any part of the
program not necessarily the method only.

whereas throws is particularly used to throw an exception
arising out of the use of a method to the exception handler
which is the catch block..

Is This Answer Correct ?    15 Yes 1 No

Explain about throw keyword?..

Answer / tiger kumar

yes,its used to throw the user defined exception.

But its not always good habit to use throw exception.

Some times we can predict it will throw the exception.If we
know the error will come there in the earlier means why we
need to use the exceptions.we can solve it while writtting
code itself.

Is This Answer Correct ?    11 Yes 4 No

Explain about throw keyword?..

Answer / sabarish

in java , throw keyword is used to throw an exception which
cannot be trapped.

Is This Answer Correct ?    19 Yes 16 No

Explain about throw keyword?..

Answer / mandeswara rao

Before catching an exception it is must to be thrown first.
This means that there should be a code somewhere in the
program that could catch the exception. We use throw
statement to throw an exception or simply use the throw
keyword with an object reference to throw an exception. A
single argument is required by the throw statement i.e. a
throwable object.

Is This Answer Correct ?    5 Yes 2 No

Explain about throw keyword?..

Answer / rhietu negi

"Throw" keyword indicate that we forcefully want to thorow
an error

Is This Answer Correct ?    6 Yes 6 No

Explain about throw keyword?..

Answer / mahesh pyla

Throw is a keyword,which gives an indication to the calling
function to keep the called function with in try and catch
blocks for generating user friendly messages instead of
generating system error message.

Is This Answer Correct ?    3 Yes 3 No

Explain about throw keyword?..

Answer / ashima singh

The throw keyword is used when if a mehod is capable of
causing an exception that it does not handle.

Is This Answer Correct ?    1 Yes 3 No

Explain about throw keyword?..

Answer / sabarish

sorry guys..i thought its java...

Is This Answer Correct ?    5 Yes 12 No

Explain about throw keyword?..

Answer / sunil

throw keyword will throw an user defined exception

Is This Answer Correct ?    9 Yes 16 No

Explain about throw keyword?..

Answer / navin c. pandit

Hey guys don't confuse others if u don't know the actual ans.

The 'throw' keyword in C# throws a user defined exception.

Is This Answer Correct ?    7 Yes 15 No

Post New Answer

More C Sharp Interview Questions

Why cannot you specify the accessibility modifier for methods inside the interface?

0 Answers  


How do you escape in c#?

0 Answers  


what is generics? can u explain 5 to 6 examples on generics that covers class,method,structure,list,delegates?

2 Answers   Satyam,


What is array c#?

0 Answers  


What is the usage of Enumeration in C# Programming and is it good to use or not ?

0 Answers   MCN Solutions,






How do you secure a webservice?

1 Answers   TCS,


What is the difference between class and namespace?

0 Answers  


What is the use of system.environment class in c#.net?

0 Answers  


What is out int in c#?

0 Answers  


Do loops in c#?

0 Answers  


Can a struct inherit from another struct or class in c#?

0 Answers  


Write one code example for compile time binding and one for run time binding? What is early/late binding?

0 Answers  


Categories