What is the difference between variable & constant?
No Answer is Posted For this Question
Be the First to Post Answer
What are user defined exceptions?
What happens if an exception is not caught?
What is api 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 } }
What is prefix of a string?
Java is pass by value or pass by reference? Explain
What is size_t?
Can you explain the private protected field modifier?
Explain about wait() method?
Does java return by reference?
How do you use wildcards?
What an i/o filter?