adplus-dvertising
frame-decoration

Question

Consider the following linked list. Which of the following piece of code will insert the node pointed to by q at the end of the list ?

a.

for (p=list; p!=NULL; p=p→next); p=q;

b.

for (p=list; p!=NULL; p=p→next); p→next=q;

c.

for (p=list; p→next !=NULL; p=p→next); p=q;

d.

for (p=list; p→next !=NULL; p=p→next); p→next=q;

Answer: (d).for (p=list; p→next !=NULL; p=p→next); p→next=q;

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Consider the following linked list. Which of the following piece of code will insert the node pointed to by q at the end of the list ?

Similar Questions

Discover Related MCQs

Q. Consider  a  rooted  tree  in  which  every  node  has  at  least  three  children.  What  is  the minimum number of nodes at level i (i > 0) of the tree?  Assume that the root is at level 0:

Q. Which of the following data structure is used to implement recursion?

Q. The height of a binary tree with ‘n’ nodes, in the worst case is:

Q. Given a parallel algorithm A with computation time t, if parallel algorithm A performs m computational operation, then p processors can execute algorithm A in time given by:

Q. With reference to implementation of different association mining algorithms, identify the correct statement:

Q. The maximum number of nodes in a binary tree of depth 10 is:

Q. The time required to find shortest path in a graph with n vertices and e edges is:

Q. Pre order is also known as:

Q. The equivalent post fix expression for d/(e+f) + b*c is:

Q. Which algorithm has same average, worst case and best case time?

Q. Application of data structure in queue is:

Q. The number of edges in a complete graph with N vertices is equal to:

Q. Which algorithm has same average, worst case and best case time?

Q. Binary search tree is an example of:

Q. What is the time required to insert an element in a stack with linked implementation?

Q. The equivalent postfix expression for d/(e+f) + b*c:

Q. Which one of the following is a physical data structure ?

Q. Which of the following statement is false ?

Q. If the postfix form of a string is ABC+-D*, the actual string is:

Q. Application of data structure queue is: