how to handle exceptions in core applications?

Answers were Sorted based on User's Feedback



how to handle exceptions in core applications?..

Answer / tamilvanan

in core java, we can handle the exception by the following
key words
1.try
2.catch
3.finally
4.throws(it throws only predefined exception)
5.throw(it throw both predefined and userdefined exception)

Is This Answer Correct ?    9 Yes 0 No

how to handle exceptions in core applications?..

Answer / laxmi

In core applications we can handle the exceptions by using
try &catch blocks.

ex:
class excep
{
public static void main(String[] args)
{
try
{
System.out.println(2/0);
}
catch(Exception e)
{
System.out.println(e);
}

}
}

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is vector capacity in java?

0 Answers  


How does hashmap work in java ?

0 Answers  


Can we override protected method in java?

0 Answers  


What is java class writing rules?

1 Answers   Oracle,


What are different access specifiers in java?

0 Answers  






What is a bufferedreader?

0 Answers  


Explain the difference between jdk, jre, and jvm?

0 Answers  


What is Java Shutdown Hook?

0 Answers  


Explain yield() method in thread class ?

0 Answers  


Differentiate between postfix and prefix operators in java.

0 Answers   HCL,


Write a factorial program using recursion in java?

0 Answers  


Can we override singleton class?

0 Answers  


Categories