How do you declare an array in java?


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

Post New Answer

More Core Java Interview Questions

when,where and how to use abstract class and interface

2 Answers  


Which method will get invoked first in a stand alone application?

1 Answers  


can you program for reverse string?

7 Answers   IBM,


What are Interceptors?

1 Answers  


What does file separator do in java?

0 Answers  






explain System.out.println

107 Answers   Calpine Technologies, Care, Cognizant, CTS, IBM, IBS, LibSys, Oracle, Spiro Solutions, TCS,


How do you reverse a string in java?

0 Answers  


Say any two properties in beans?

0 Answers  


If a multi threaded Java program has started numerous number of threads, at any point in time how to know which thread is currently executing/running ?

7 Answers   Accenture, College School Exams Tests, iFlex, NIIT,


What is the difference between length and length () in java?

0 Answers  


If I will write String s=new String("XYZ"); String s1=new String("XYZ"); if(s.equals(s1)){ sop("True"); } else{ sop("False"); } This program will give me "True". But When I am creating my own class suppose class Employee{ public Employee(String name); } Employee e= new Employee("XYZ"); Employee e1 = neew Employee("XYZ"); if(e.equals(e1)){ sop("True"); } else{ sop("False"); } Then it will give the output as "False". Can I know what is happening internally?

5 Answers  


Which category the java thread do fall in?

0 Answers  


Categories