Microsoft interview question

What is linked list and array

Interview Answer

Anonymous

8 Nov 2024

linked list and array both are data structures used to store data . Array is static data structure whereas LL is dynamic DS.The difference between this 2 DS is their Size . We can't modify the size of array once declared but we can do that of LL.