What do you mean by an array ? explain with an example
Answer Posted / ramyathillainathan
An array is a fixed size sequenced collection of elements of the same data type. An array is defined as group of related data that share on common name.
for example:
salary [10]
represent the salary of 10 th employee .
Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
When we delete logfiles such as screenshots how does it affect the ldf file? Ive seen huge change while adding screenshots in the ldf file but a very minor one deleting them.Please Explain
what is meaning of MDM in sap?let me know that meaning
You are given some denominations of coins in an array (int denom[])and infinite supply of all of them. Given an amount (int amount), find the minimum number of coins required to get the exact amount. What is the method called?
What is ur porject Architecture? If anyone ask what i have to specify here..
Given an array of size n, containing every element from 1 to n+1, except one. Find the missing element.
when a query is made on Logical file in DB2/400, will the records satisfying select/omit criterion be fetched from all members of physical file or only the member with same name as physical file?
How does the type system works when there is interoperability between a COM and .Net, i mean what exactly happens there
5.Call by value and Call by reference with program?
any drawback are there in mantis?
what are the 3 forms of a prolog term
what are the things i had to say in personal introduction in hr round mail me to prasanna.1867@rediff.com
a characteristic of a multiprogramming is? a.simultaneous exe of pgm instr 4m 2 appli b.concurrent processing of 2 r more prgms c.multiple cpu s d.all the abov
Hello Experts, What is the difference between move and move corresponding exactly? please post me asap
can we retrieve only integer/String type columns from a table,if yes how?
Given an array all of whose elements are positive numbers, find the maximum sum of a subsequence with the constraint that no 2 numbers in the sequence should be adjacent in the array. So 3 2 7 10 should return 13 (sum of 3 and 10) or 3 2 5 10 7 should return 15 (sum of 3, 5 and 7)