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

Explain can you assign a different address to an array tag?

0 Answers  


what is the benefit of c30

2 Answers  


Identify the operators that is not used with pointer a. && b. # c. * d. >>

2 Answers  


what is void pointer?

1 Answers   Wipro,


What is the symbol indicated the c-preprocessor?

0 Answers  






write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"

2 Answers  


sir, i cannot find the way how to write aprogram by using array on queue

1 Answers   IISIT,


Explain how do you determine whether to use a stream function or a low-level function?

0 Answers  


What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }

8 Answers   MindFire, TCS, Tech Mahindra,


How can I change the size of the dynamically allocated array?

0 Answers  


What is the mean of this statement:: if(int i=0 * i=9)

2 Answers   HCL,


What is a void pointer in c?

0 Answers  


Categories