What is the Maximum Size that an Array can hold?
Answers were Sorted based on User's Feedback
Answer / leo
It belongs toich s us the size of the RAM . which is used
in the particular system.
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / manoj
The size in Arrays is basically of type int. An int in java
is of 32 bits, so the maximum size we can give is 2,147,483,647.
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / ashif ali
infinity and it is also depend on the size of the program.
| Is This Answer Correct ? | 0 Yes | 5 No |
Answer / guest
the array can hold only the no of elements given in braces
| Is This Answer Correct ? | 0 Yes | 5 No |
Answer / namitha
An array can hold the declared number size..
that is the size specified by the user
| Is This Answer Correct ? | 0 Yes | 6 No |
What are Binay tress and B trees? Diff between them?
What are the comments in c++?
There is a magic square matrix in such a way that sum of a column or a row are same like 3 5 2 4 3 3 3 2 5 sum of each column and row is 10. you have to check that matrix is magic matrix or not?
What is c++ prototype?
What are shallow and deep copy?
Design a program to input a date from user in the form day/month/year (e.g. 2/6/2000) and report whether it’s a valid date or not. The program should take account of leap years. You will need to know that a leap year is a year that is exactly divisible by 4, except that century years are only leap years if they are divisible by 400.
sizeof- is it functioning statically or dynamically?
You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so
What is class invariant in c++?
When should overload new operator on a global basis or a class basis?
What is a linked list in c++?
How would you represent an error detected during constructor of an object?