What is the Super Class of Exception in java?
Answers were Sorted based on User's Feedback
Answer / shipra rana
Throwable is the super class of exceptions in java
| Is This Answer Correct ? | 189 Yes | 15 No |
Answer / samar
Throwable is the super class of exceptions in java.
| Is This Answer Correct ? | 108 Yes | 10 No |
Answer / gayatri das
Throwable class is the superclass of all the exception
class in java.
| Is This Answer Correct ? | 69 Yes | 5 No |
Answer / rajeshwari
super class or base class for Exception and Error is Throwable
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / shazeem syed
Throwable is the super class of Exception.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sandeep pal
Exception is the super class for all exception
| Is This Answer Correct ? | 4 Yes | 13 No |
Answer / praveen
Exception is the super class of all Exception classes in java
| Is This Answer Correct ? | 9 Yes | 22 No |
Given a set. Write the pseudo code to get all the subsets for the given set. Eg. Input : {1,2} Output : (),(1),(2),(1,2)
What is good attributes of Programming language ?
How to display questions one by one in jsp and I wants to store the answers in my database?
Given a cube of size n*n*n (i.e made up of n^3 smaller cubes), find the number of smaller cubes on the surface. Extend this to k-dimension.
how many keywords are present in "c"?
18 Answers Assurgent, Cynosure Software, IBM,
What is the difference between save and create method of activerecord?
Write a program which inputs 2 integers representing the sides of a triangle, a and b. Next, write a function which accepts the 2 sides as parameters and returns the hypotenuse of the triangle, c. Use c 2 = a 2 + b 2 To raise a number to an exponent, us e the built - in JavaScript function Math.pow() Let’s say you have a variable x and you want to raise it to the 5 th power, use Math.pow in the following manner... Math.pow( x, 5 ); This will raise x to the 5 th power. To find the square root of a number, use t he built - in JavaScript function Math.sqrt () So to find the square root of x, use Math.pow () in the following manner... Math.sqrt( x ) You must create 2 functions to receive credit for this assignment. Your ‘ main ’ function which is called from the button. And your hypotenuse function. Again, the main function calls upon the hypotenuse f unction when it needs that value. Get the user ’ s input, call the function, output your result. Create your own CSS layout
Explain recursion with an example.
To sorting array of 10 elements which sorting is best a)selection b)bubble c)tree sort
What is the client concept in SAP? What is the meaning of client independent?
hi all, i need ur help in preparing a sql which performs scd2, i mean i have a scd2 mapping i need a sql which can give me same result as scd2 mapping, SRC table: cust_no, loc 01 abc 02 xyz TGT table: pm_ky cust_no loc current_flag 1 01 abc Y 2 02 xyz Y cust 1 has changed his loc to xyz then it loads into TGT table as below, pm_ky cust_no loc current_flag 1 01 abc N 2 02 xyz Y 3 01 xyz Y i need sql to get the above result, hope got me question, Any suggestion will be appreciate.. thanks, Vinod
What is a dialog based program