what is array?
Answers were Sorted based on User's Feedback
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 |
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 |
Answer / kalidasan
Array is a object, it will allow to store multiple values in
one variable.
Is This Answer Correct ? | 3 Yes | 2 No |
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 |
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 |
Answer / saroj kumar manik
array is collection of data element in hierchical way in
computer memory.
Is This Answer Correct ? | 1 Yes | 0 No |
Why do we use c for the speed of light?
What is volatile variable in c with example?
How does sizeof know array size?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
When should you not use a type cast?
writ a program to compare using strcmp VIVA and viva with its output.
Explain what is the most efficient way to store flag values?
How can I avoid the abort, retry, fail messages?
Explain in detail how strset (string handling function works )pls explain it with an example.
Why c is called top down?
What is pass by value in c?
What is an operator?