adplus-dvertising
frame-decoration

Question

What is the most significant difference between an array and a linked list from a reversing standpoint?

a.

Linked lists have a certain memory overhead associated with them

b.

Items in a linked list are generally not directly accessible through their index

c.

Linked list items are scattered in memory and each item contains a pointer to the next item

d.

Array items are stored sequentially in memory

Posted under Reverse Engineering

Answer: (c).Linked list items are scattered in memory and each item contains a pointer to the next item Explanation:The most significant difference between an array and a linked list from a reversing standpoint is that linked list items are scattered in memory and each item contains a pointer to the next item and possibly to the previous item (in doubly linked lists).

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the most significant difference between an array and a linked list from a reversing standpoint?