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 |
Why namespace is used in c++?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What are the five types of inheritance in C++?
What is private public protected in c++?
Define a program that reads two matrices of size 3x3 with real values from the user then prints their sum, difference and multiplication.
What jobs can you get with a c++ certification?
What does ctime() do?
Explain the register storage classes in c++.
What is vector string in c++?
What is null pointer and void pointer?
What are the advantages of using pointers in a program?
What is a unnitialised pointer?