Is an integer an object?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know how to reverse string in java?
How many times garbage collector will invoke an object?s finalize() method?
What is the purpose of methodology?
If set accepts only one argument then how can it compare two objects to avoid duplicates
2) Suppose there are 5 directories having lot of files (say txt files) in each directory. 2 things :- 2.1) You want to search for filenames which have a particular pattern. 2.2) Out of these filtered files you want to search for a particular keyword or a search string. How can you achieve this?
what are the high-level thread states? : Java thread
What is thread start?
what is wrapper class and its uses?
Tell some latest versions in JAVA related areas?
How do you remove spaces in java?
How do you declare a string variable?
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 } }