Define the reason that makes the array a static structure.(1 point) Responses Its length can be changed at the runtime, but not the data type. Its length can be changed at the runtime, but not the data type. Its data type and length cannot be changed at the runtime because they are already defined at the time of declaration. Its data type and length cannot be changed at the runtime because they are already defined at the time of declaration. Its data type can be changed at the runtime but not the length. Its data type can be changed at the runtime but not the length. Its length can be incremented at runtime because the random memory is allotted based on data elements.

3 answers

The correct reason that makes an array a static structure is: Its data type and length cannot be changed at runtime because they are already defined at the time of declaration.

Which of the following defines the disadvantage of arrays?(1 point) Responses Adding new values make the structure complex. Adding new values make the structure complex. 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 difficult to access the values in between. It is difficult to access the values in between. It is not possible to change the length or data types of arrays at runtime.

The disadvantage of arrays is best defined by: It is not possible to change the length or data types of arrays at runtime.