what is an array

Answers were Sorted based on User's Feedback



what is an array ..

Answer / abed

array i s the collection of similar data type it reduces
the unnecessary decleration of data types or variables

Is This Answer Correct ?    7 Yes 0 No

what is an array ..

Answer / shankar

An Array is nothing but a collection of homogenous data of
fixed type.

Is This Answer Correct ?    3 Yes 0 No

what is an array ..

Answer / pradeep.v.s.

Array is a collection of variables of same data type stored
in contigious memory locations....

Is This Answer Correct ?    4 Yes 1 No

what is an array ..

Answer / swamy s t

Array is a set of elements with homogeneous(same) data
type ,that stores elements consecutivly in memory location
and access of array elements is depending on the position
of elements in the array.

Is This Answer Correct ?    2 Yes 0 No

what is an array ..

Answer / sai kiran

Collection of data of similar datatypes in adjacent memory locations.

Is This Answer Correct ?    2 Yes 0 No

what is an array ..

Answer / malathi

array is a collection of homogeneous data items,that shares
a common name,this is stored in sequence memory.

Is This Answer Correct ?    1 Yes 0 No

what is an array ..

Answer / saranya

an array is a collection of elements with same data type.
it can also reduce the storage space

Is This Answer Correct ?    1 Yes 0 No

what is an array ..

Answer / varsha vilas kalebag

array is an set od data types

Is This Answer Correct ?    1 Yes 1 No

what is an array ..

Answer / venu gopal raju

array is nothing but an array(a set ) of constants of
similar data type .

Is This Answer Correct ?    1 Yes 1 No

what is an array ..

Answer / nekkanti rajesh

an array is a collection of elements of a single data type
stored in adjacent


<data_type><variable_name>[<dimension_size>];
ex:

int arr[5];

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is a terminating character in c++?

0 Answers  


Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator

2 Answers   HCL, Lehman Brothers, Zoomerang,


Why do we need templates?

0 Answers  


Is c++ a difficult language?

0 Answers  


Difference between Abstraction and encapsulation in C++?

0 Answers   Impetus,






When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?

0 Answers  


What is pointer to array in c++?

0 Answers  


What are built-in functions? What is the syntax for the definition?

0 Answers  


Show the declaration for a static function pointer.

0 Answers  


Is there a sort function in c++?

0 Answers  


What is a class template?

0 Answers  


Can we use clrscr in c++?

0 Answers  


Categories