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

How can you quickly find the number of elements stored in a static array?

0 Answers  


What is the use of map in c++?

0 Answers  


What is the difference between passing by reference and passing a reference?

0 Answers  


What are proxy objects?

2 Answers  


What is the syntax for a for loop?

0 Answers  






Explain about vectors in c ++?

0 Answers  


class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4

4 Answers   Quark,


Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement

0 Answers  


Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes

0 Answers  


What is RTRT tool?can it be used for automation?can it work on packet PC?

3 Answers  


Is there finally in c++?

0 Answers  


Should the member functions which are made public in the base class be hidden?

0 Answers  


Categories