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 / kamal aggarwal

32767

Is This Answer Correct ?    21 Yes 77 No

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

Answer / priya

it depend upon the program

Is This Answer Correct ?    4 Yes 61 No

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

Answer / sunita

It depend upon the programmer need

Is This Answer Correct ?    7 Yes 67 No

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

Answer / chithra

Infinity

Is This Answer Correct ?    33 Yes 117 No

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

Answer / payal gupta

infinity

Is This Answer Correct ?    3 Yes 88 No

Post New Answer

More C++ General Interview Questions

What is virtual function? Explain with an example

0 Answers  


Explain differences between new() and delete()?

0 Answers  


What do you mean by function pointer?

0 Answers  


class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;

1 Answers   Quark,


Differentiate between late binding and early binding. What are the advantages of early binding?

0 Answers  


What is an explicit constructor?

1 Answers  


What is a c++ vector?

0 Answers  


Write about c++ storage classes?

0 Answers  


What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass

0 Answers  


Will the inline function be compiled as the inline function always? Justify.

1 Answers  


What is the use of main function in c++?

0 Answers  


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.

1 Answers  


Categories