How many types of linked lists what are they?
How many types of data structures?

Answer Posted / priyanka nigam

There are two types of linked list.
Single and Double
Single would move only in one direction while double linked
list can move in both directions ie forward and backward.
Data Structures
1. Arrays
2.Linked List
3.Structures
4.Trees
5.Queues
6.Stack

Is This Answer Correct ?    84 Yes 28 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a struct c#?

599


Why c is called a middle level language?

634


What is c standard library?

690


What is 02d in c?

637


What is a sequential access file?

648






Explain the use of function toupper() with and example code?

655


Explain how do you search data in a data file using random access method?

696


What are the uses of null pointers?

590


Why doesnt that code work?

600


What is wrong with this statement? Myname = 'robin';

816


What is dangling pointer in c?

621


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

657


Linked list is a Linear or non linear explain if linear how it working as a non linear data structures

1762


What is the difference between mpi and openmp?

736


a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

645