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
2 Likes
Related Questions
A subscript of an element designates its position in the array's ordering. (T/F)
How is one-dimensional array represented in memory ?
An array element is accessed using …………… .
- a first-in-first-out approach
- the dot operator
- an element name
- an index number
All the elements in an array must be of …………… data type.