What is unicode in java?
No Answer is Posted For this Question
Be the First to Post Answer
Explain when we should make an instance variable private.
what is difference between set and list in collection?
How do you compare arrays in java?
What is purpose of find feature?
What is boolean data type in java?
What is io stream in java?
Can you explain the difference b/n abtract and interface with a good example,?In what cases we have use abtract and what case interface?
What is a native method?
What is <> used for in java?
What is == and === in javascript?
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 the purpose of a statement block?