Can we compare two strings in java?
No Answer is Posted For this Question
Be the First to Post Answer
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 bubble sort in java?
Why does java have two ways to create child threads?
What are the wrapped, classes?
Can we override the main method?
What is java reflection?
What is t type java?
What is a treeset class?
can write code for serialization ?
Default layout of panel and frame?
What are the advantages of defining packages in java?
What is the difference between a vector & an array list?