What is an exception?
Answers were Sorted based on User's Feedback
Answer / vikneswarank
when we write code and try to execute the that code error
may be occur in runtime or complie time complie time error
nothing but syntex error we can easily set right by
reediting suitable code runtime error is exception. we can
handle the exception use Exception class which is belongs
to java.lang. package using this class handle the exception
(try catch) block
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / swapna
Exception is a runtime error. It is a abnormal condition
that arises at runtime in a code sequence
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vikas
Exception is a class available in java.lang package and has
many subclasses.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
exception is the abnormal condition which will occur at run time
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rahul kakadiya
EXECEPTION IS A ONE TYPE OF RUN TIME ERROR ,WHICH CAN BE
HANDLE BY EXCEPTION HANDLAR.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sumit pal singh
Exception is an event that occur at run time. Exception is a problem that we can solve by providing a programmatic solution.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the different tags provided in jstl?
What do you mean by platform independence? What is an interface?
How many types of interfaces are there?
How many types of packages are there in Java?
Why Java is called as purely platform independent..? Explain briefly..dont Give regular answers Explain with your own example..?
What is the covariant return type?
Which containers use a flowlayout as their default layout in java programming?
How many arguments can be passed to main ()?
wht is mean by dirty read?
What are the advantages of inner classes?
What is the difference between compiler and jvm?
This abstract class is correct ? abstract class A { public abstract void Disp(); public abstract void B() { } public absract virtual C() { } }