What technique is carried out to find out if a particular string is empty?


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

Post New Answer

More Core Java Interview Questions

What is difference between char array and string?

0 Answers  


what is the purpose of the final in the try-catch-final

7 Answers  


What is difference between overloading and overriding in java?

0 Answers  


What is locale in java?

0 Answers  


What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }

5 Answers   Rolta,






What is are packages?

0 Answers  


What is casting ?

2 Answers  


Which sorting is used in arrays sort in java?

0 Answers  


What is Java Shutdown Hook?

0 Answers  


What is the meaning of I ++ in java?

0 Answers  


What is the difference between quicksort & mergesort? When should they be used? What is their running time?

0 Answers   Akamai Technologies,


What is the difference between add() and addElement() method in Vector Class ?

2 Answers   TCS,


Categories