How do you add an element to a hashset in java?
No Answer is Posted For this Question
Be the First to Post Answer
What are anonymous inner classes?
What is generic type?
What is the purpose of void class?
Explain about doubly linked list
0 Answers Aditi Placement Service,
String is an immutable object. Then how can the following code be justified. String s1 = ?ABC?; String s1 = s1+?XYZ?; s.o.p(s1); The output is ABCXYZ, which is the value of s1 ?
6 Answers Flextronics, Keane India Ltd,
What is the use of math abs in java?
What are the Main functions of Java?
0 Answers Akamai Technologies,
What is n in java?
what questions are been asked ??? for interview in apti
How to convert string to int in java?
Why cant we define System.out.println() inside a class directly?
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 } }