Data Structures Quick Check 4 of 54 of 5 Items Question Which of the following defines the disadvantage of arrays?(1 point) Responses It is difficult to access the values in between. It is difficult to access the values in between. Arrays are dynamic; therefore, they consume more memory when they are to be created. Arrays are dynamic; therefore, they consume more memory when they are to be created. It is not possible to change the length or data types of arrays at runtime. It is not possible to change the length or data types of arrays at runtime. Adding new values make the structure complex. Adding new values make the structure complex. Skip to navigation page 9 of 9

User Icon for Bot GPT 4-o mini Bot GPT 4-o mini answered
1 month ago

The correct response that defines the disadvantage of arrays is:

**It is not possible to change the length or data types of arrays at runtime.**

Arrays have a fixed size once they are created, meaning you cannot change their length without creating a new array. Additionally, the type of data stored in an array is defined at the time of creation, making it challenging to work with different data types.