What is the Maximum Size that an Array can hold?

Answers were Sorted based on User's Feedback



What is the Maximum Size that an Array can hold?..

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

What is the Maximum Size that an Array can hold?..

Answer / aditi

it depends on compiler to compiler.

Is This Answer Correct ?    1 Yes 4 No

What is the Maximum Size that an Array can hold?..

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

What is the Maximum Size that an Array can hold?..

Answer / arvind giri

java.lang.Integer.MAX_VALUE + 1

Is This Answer Correct ?    6 Yes 11 No

What is the Maximum Size that an Array can hold?..

Answer / ashif ali

infinity and it is also depend on the size of the program.

Is This Answer Correct ?    0 Yes 5 No

What is the Maximum Size that an Array can hold?..

Answer / guest

the array can hold only the no of elements given in braces

Is This Answer Correct ?    0 Yes 5 No

What is the Maximum Size that an Array can hold?..

Answer / shubhra pal

INFINITY

Is This Answer Correct ?    0 Yes 5 No

What is the Maximum Size that an Array can hold?..

Answer / kumar

infinity

Is This Answer Correct ?    0 Yes 5 No

What is the Maximum Size that an Array can hold?..

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 the Maximum Size that an Array can hold?..

Answer / arvind giri

Oooops I thought its a java question

Is This Answer Correct ?    3 Yes 12 No

Post New Answer

More C++ General Interview Questions

What is difference between shallow copy and deep copy? Which is default?

1 Answers  


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create

0 Answers  


What is c++ best used for?

0 Answers  


What is enum class in c++?

0 Answers  


Which software is best for c++ programming?

0 Answers  






How do you define a class in c++?

0 Answers  


Live example for static function?

1 Answers   Infosys,


What is the difference between C and CPP?

0 Answers   iNautix,


What is difference c and c++?

1 Answers  


what is the use of templates?

3 Answers  


What does extern mean in a function declaration in c++?

0 Answers  


Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300

0 Answers  


Categories