Is array an object in Java ? How can you prove that ?<br /> <br />
Javasearch.buggybread.com

Search Interview Questions


 More than 3000 questions in repository.
 There are more than 900 unanswered questions.
Click here and help us by providing the answer.
 Have a video suggestion.
Click Correct / Improve and please let us know.
Label / Company      Label / Company / Text

   



Interview Questions and Answers

 Q1. Is array an object in Java ? How can you prove that ?

Core Java
Ans. Yes.

There are 2 ways this can be confirmed

1. Accessing object class methods using array reference.

2. Checking if the array is an instance of Object class

if (arrayRef instanceof Object)


 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     arrays


Related Questions

 If arrays cannot be resized , Why is this code valid

String[] strArray = new String[2];
strArray = new String[5];
  What are the disadvantages of using arrays ?
  What are the Disadvantages of using Collection Classes over Arrays ?
  Advantage of Collection classes over Arrays ?
 Difference between Arrays and ArrayList ?
 Can we declare an array without assigning the size of an array?
 Why doesn't this code give compile time error when we are clearly trying to add an integer element to an array of Strings

Object[] strArray = new String[2];
strArray[0] = 5;
  What is the advantage of using arrays over variables ?
  What is the difference between int[] x; and int x[]; ?
 Write a Program to merge two sorted arrays ?



Help us and Others Improve. Please let us know the questions asked in any of your previous interview.

Any input from you will be highly appreciated and It will unlock the application for 10 more requests.

Company Name:
Questions Asked: