Is double link list a linear data structure? If Yes, Why?If
No, Why?
Answer Posted / kiran
A data structure is said to be linear, if the elements are accessed in sequence. As the nodes of a DLL are accessed in sequence(starting from the first node, one after the other), it is a linear data structure.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the types of functions in c?
When should we use pointers in a c program?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
difference between Low, Middle, High Level languages in c ?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Explain setjmp()?
How can I read/write structures from/to data files?
How can you increase the size of a dynamically allocated array?
What is the difference between single charater constant and string constant?
What is the meaning of && in c?
What do you mean by a sequential access file?
What are void pointers in c?
How does selection sort work in c?
Explain about block scope in c?
Explain the difference between malloc() and calloc() in c?