KnowledgeBoat Logo
|

Computer Applications

Determine the number of bytes required to store an int array namely A[23].

Java Arrays

1 Like

Answer

An int data type requires 4 bytes in memory. Therefore, the storage space required by array A[ ] will be 23 x 4 = 92 bytes.

Answered By

1 Like


Related Questions