what is array?

Answers were Sorted based on User's Feedback



what is array?..

Answer / raja

an array is collection of similar data types, and it
occupies the memory in a sequence of order

Is This Answer Correct ?    6 Yes 4 No

what is array?..

Answer / siva

we can use more than one variable

Is This Answer Correct ?    4 Yes 2 No

what is array?..

Answer / durga

Array is a group of elements of same data type.
Elements are identified by subscript or indexed.
Java follows zero(0) based indexing.
Name of the array points to the base element of the first array.
Array elements are stored continiously.
All the array elements sharing the common name.
It is an derived data type.

Is This Answer Correct ?    2 Yes 0 No

what is array?..

Answer / kalidasan

Array is a object, it will allow to store multiple values in
one variable.

Is This Answer Correct ?    3 Yes 2 No

what is array?..

Answer / uzair

Array is a collection of similar data types.

Is This Answer Correct ?    1 Yes 0 No

what is array?..

Answer / akash

array is a collecation of elments

Is This Answer Correct ?    1 Yes 0 No

what is array?..

Answer / nitian gopal

Array is a collection of similar data, that occupies a
contiuous merory.
Syntax:
type arryname[size];
exm:
int roll[52];

Is This Answer Correct ?    1 Yes 0 No

what is array?..

Answer / shikha

array is a homogeneous and similar data type.

Is This Answer Correct ?    1 Yes 0 No

what is array?..

Answer / dhaval patel

An Array is a collection of variables of the same type that
are refered to through a common name.

Is This Answer Correct ?    1 Yes 0 No

what is array?..

Answer / saroj kumar manik

array is collection of data element in hierchical way in
computer memory.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

In header files whether functions are declared or defined?

1 Answers   TCS,


what is the differance between pass by reference and pass by value.

7 Answers   Infosys,


how to generate sparse matrix in c

3 Answers  


List the difference between a "copy constructor" and a "assignment operator"?

0 Answers   Accenture,


What is array of structure in c programming?

0 Answers  






a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none

0 Answers  


An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above

0 Answers  


What is static identifier?

0 Answers   TCS,


void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }

3 Answers   ME, pspl,


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

0 Answers  


Why c language is called c?

0 Answers  


Differentiate between ordinary variable and pointer in c.

0 Answers  


Categories