Is a linked list a random access data structure?

Advantages of Arrays

Is a linked list a random access data structure?
Figure 1: Demo program to illustrate consecutive memory locations
Is a linked list a random access data structure?
Figure 2: Output of program in Figure 1

Disadvantages of Arrays

Slow Insertion/Deletion Time:

Is a linked list a random access data structure?
Figure 3: Diagram of singly linked list structure

Advantages of Linked List

Is a linked list a random access data structure?
Figure 4: Diagram of inserting a node to the beginning of a linked list
Is a linked list a random access data structure?
Figure 5: Diagram of inserting a node in the middle of a linked list
Is a linked list a random access data structure?
Figure 6: Diagram of appending a node to a linked list
Is a linked list a random access data structure?
Figure 7: Diagram of deleting first node from linked list
Is a linked list a random access data structure?
Figure 8: Diagram of deleting node from the middle of linked list
Is a linked list a random access data structure?
Figure 9: Diagram of deleting last node from linked list

Fast Insertion/Deletion Time:

Disadvantages of Linked List

Conclusion

Is a linked list a random access data structure?
Figure 10: Summary of strengths and weaknesses of arrays and linked list