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 is this loop always executing once?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
How to implement a packet in C
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
Differentiate b/w Modify and Update commands giving example.
What is typedf?
Is it possible to pass an entire structure to functions?
Why n++ execute faster than n+1 ?
What is ambagious result in C? explain with an example.