What is the use of join method?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Can we serialize arraylist in java?

0 Answers  


I want my class to be developed in such a way that no other class (even derived class) can create its objects. How can I do so?

0 Answers  


What is difference between char array and string?

0 Answers  


What is the difference between constructor and method?

4 Answers  


Write a program to find the whether a number is an Armstrong number or not?

0 Answers   Aspire, Infogain,






How to convert string to char and vice versa?

0 Answers  


Is java se open source?

0 Answers  


what is overloading in java?

13 Answers   Ascent, DNS, Infosys, SDA, VelTech,


Explain the polymorphism principle?

0 Answers  


Write a function to find out longest palindrome in a given string?

0 Answers  


What is numeric promotion?

1 Answers  


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 } }

3 Answers  


Categories