What is the difference between throw and throws in java?
No Answer is Posted For this Question
Be the First to Post Answer
What do you understand by weak reference?
Which number is denoted by leading zero in java?
Can we write any code after throw statement?
Do we have pointers in java?
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
Can subclass overriding method declare an exception if parent class method doesn't throw an exception?
Is java a super set of javascript?
Java Compiler is stored in JDK, JRE or JVM?
How do you sort a string in alphabetical order in java?
when a servlet sends request for first time it uses the follwing methods a)init b)doget() c)dopost() d)service
What is ascii code?
When is the garbage collection used in Java?