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 is exception handling in C++?
What is an incomplete type in c++?
What's the most powerful programming language?
Write a function that swaps the values of two integers, using int* as the argument type?
show that among any group of five (not necessary consecutive ) integers, there are two with the same remainder when divided by 4.
Explain virtual functions in C++.
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.
How does c++ structure differ from c++ class?
What is the difference between new() and malloc()?
What is the difference between static global and global ?
What do you mean by inheritance in c++?
What is c++ hiding?