How many bytes is a string in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is diffrance between FINALIZE() & FINALLY ?
How is garbage collection controlled?
Is there is any error if you have multiple main methods in the same class?
What is time complexity java?
Is there any use of an abstract class which has no methods and no attributes?
Is ResultSet class?
5 Answers Bally Technologies, TCS,
what is difference between abstract factory and factory design patterns?
Have you used any version control ? if so explain about it?
Is main is a keyword?
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 does the three dot emoji mean?
what is the difference between thread and runnable types? : Java thread