Question: In C# , arrays are a fundamental data structure, but they come with certain limitations that developers should be aware of . Which of the

In C#, arrays are a fundamental data structure, but they come with certain limitations that developers should be aware of.
Which of the following statements are TRUE regarding the limitations of arrays in C#?
There are three correct options - the question is marked negatively.
Select one or more:
a.
Once an array is created, its size cannot be changed.
b.
Arrays in C# are strongly typed, meaning all elements in the array must be of the same type.
c.
Arrays are zero-indexed, meaning the first element is accessed with index 1.
d.
C# provides built-in methods for bounds checking to ensure that the IndexOutOfRangeException is handled effectively
e.
Arrays require a contiguous block of memory.
f.
Arrays have flexibility and allows insertion, removal, resizing using intuitive methods.
g.
Arrays do not require a contiguous block of memory.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!