Right option is (d) Access of elements in linked list takes less time than compared to arrays
Easy explanation - To access an element in a linked list, we need to traverse every element until we reach the desired element. This will take more time than arrays as arrays provide random access to its elements.