Identify an advantage of using a linked list.(1 point)

Responses

It is easier to traverse and search.
It is easier to traverse and search.

It is easier to declare.
It is easier to declare.

It is easier to access data.
It is easier to access data.

It is easier to manipulate the data.

It is easier to manipulate the data.

It is difficult to traverse.

Objects have built-in methods.

It is a decision-making function.

Which of the following is a selection structure?(1 point)

Responses

if
if

do
do

while
while

for

if

Which of the following is a disadvantage of using a linked list?(1 point)

Responses

It is difficult to manipulate data.
It is difficult to manipulate data.

It is difficult to delete data.
It is difficult to delete data.

It is difficult to traverse.
It is difficult to traverse.

It is difficult to declare.

What is an advantage of having lists as objects?(1 point)

Responses

Objects are dynamic.
Objects are dynamic.

Objects have built-in methods.
Objects have built-in methods.

Objects are easy to declare.
Objects are easy to declare.

Objects are ordered.

Which of the following best explains the role of selection in a program?(1 point)

Responses

It is the set of instructions the computer follows.
It is the set of instructions the computer follows.

It is a decision-making function.
It is a decision-making function.

It is the order of the commands to the computer.
It is the order of the commands to the computer.

It is a repetitive function.

The correct answer is "It is easier to manipulate the data."

To arrive at this answer, we can consider the advantages of using a linked list. One advantage is that it allows for easy manipulation of the data. Linked lists provide flexibility in adding, removing, and modifying elements without requiring the entire list to be reorganized. This is because each element in a linked list contains a reference to the next element, rather than being stored in contiguous memory locations like in an array. As a result, linked lists are particularly useful when dealing with dynamic data structures and situations where frequent modifications are expected.