Arrays

which array will be easy to access the elements out of dynamic , associative array and queues ?

In reply to bhargav_1909:

What do you mean by easy? Amount of code to write? How easy it is to understand? Performance?

And what do you mean access? read? write? add? delete?

In reply to dave_59:
which will give performance best(quickly)?

In reply to bhargav_1909:

You did not answer my second question. The different array kinds have different performance impacts depending on your intended use. For queue and dynamic arrays, see: why need dynamic array | Verification Academy

Associative arrays have very different use models; mainly for non-contiguous indexes.