Data Structures Interview Questions and Answers
Data Structures Interview Questions and Answers
Written by Shaukat
Wednesday, 15 August 2012 15:40 -
List out the areas in which data structures are applied extensively?
Compiler Design, Operating System, Database Management System, Statistical analysis
package, Numerical Analysis, Graphics, Artificial Intelligence, Simulation
If you are using C language to implement the heterogeneous linked list, what pointer
type will you use?
The heterogeneous linked list contains different data types in its nodes and we need a link,
pointer to connect them. It is not possible to use ordinary pointers for this. So we go for void
pointer. Void pointer is capable of storing pointer to any type as it is a generic pointer type.
In RDBMS, what is the efficient data structure used in the internal storage
representation?
B+ tree. Because in B+ tree, all the data is stored only in leaf nodes, that makes searching
easier. This corresponds to the records that shall be stored in leaf nodes.
1 / 10
Data Structures Interview Questions and Answers
Written by Shaukat
Wednesday, 15 August 2012 15:40 -
Does the minimum spanning tree of a graph give the shortest distance between any 2
specified nodes?
Minimal spanning tree assures that the total weight of the tree is kept at its minimum. But it
doesn't mean that the distance between any two nodes involved in the minimum-spanning tree
is minimum.
2 / 10
Data Structures Interview Questions and Answers
Written by Shaukat
Wednesday, 15 August 2012 15:40 -
that are not in arrays, and it can be used to sort things that don't fit into memory. It also can be
implemented as a stable sort.
Getting memory from the heap is much slower than getting it from the stack. On the other
hand, the heap is much more flexible than the stack. Memory can be allocated at any time and
deallocated in any order. Such memory isn't deallocated automatically; you have to call free().
Recursive data structures are almost always implemented with memory from the heap. Strings
often come from there too, especially strings that could be very long at runtime. If you can keep
data in a local variable (and allocate it from the stack), your code will run faster than if you put
the data on the heap. Sometimes you can use a better algorithm if you use the heap faster, or
more robust, or more flexible. Its a tradeoff.
If memory is allocated from the heap, its available until the program ends. That's great if you
remember to deallocate it when you're done. If you forget, it's a problem. A �memory leak is
some allocated memory that's no longer needed but isn't deallocated. If you have a memory
leak inside a loop, you can use up all the memory on the heap and not be able to get any more.
(When that happens, the allocation functions return a null pointer.) In some environments, if a
program doesn't deallocate everything it allocated, memory stays unavailable even after the
program ends.
3 / 10
Data Structures Interview Questions and Answers
Written by Shaukat
Wednesday, 15 August 2012 15:40 -
Void qsort(void *buf, size_t num, size_t size, int (*comp)(const void *ele1, const void *ele2));
What is the bucket size, when the overlapping and collision occur at same time?
One. If there is only one entry possible in the bucket, when the collision occurs, there is no
way to accommodate the colliding value. This results in the overlapping of values.
4 / 10
Data Structures Interview Questions and Answers
Written by Shaukat
Wednesday, 15 August 2012 15:40 -
class Widget
{
public :
Widget(int widgetsize);
…
Widget* Construct_widget_int_buffer(void *buffer,int widgetsize)
{
return new(buffer) Widget(widgetsize);
}
};
This function returns a pointer to a Widget object that’s constructed within the buffer passed to
the function. Such a function might be useful for applications using shared memory or
memory-mapped I/O, because objects in such applications must be placed at specific
addresses or in memory allocated by special routines.
List out the areas in which data structures are applied extensively ?
Compiler Design, Operating System, Database Management System, Statistical analysis
package, Numerical Analysis, Graphics, Artificial Intelligence, Simulation
If you are using C language to implement the heterogeneous linked list, what pointer
type will you use?
The heterogeneous linked list contains different data types in its nodes and we need a link,
pointer to connect them. It is not possible to use ordinary pointers for this. So we go for void
pointer. Void pointer is capable of storing pointer to any type as it is a generic pointer type.
5 / 10
Data Structures Interview Questions and Answers
Written by Shaukat
Wednesday, 15 August 2012 15:40 -
while (pointer1)
{
pointer1 = pointer1->next;
pointer2 = pointer2->next; if (pointer2) pointer2=pointer2->next;
if (pointer1 == pointer2)
??????{
print (”circularn”);
}
}
In array the items can be entered or removed in any order. Basically each member access is
done using index. No strict order is to be followed here to remove a particular element.
What is precision?
Precision refers the accuracy of the decimal portion of a value. Precision is the number of
digits allowed after the decimal point.
6 / 10
Data Structures Interview Questions and Answers
Written by Shaukat
Wednesday, 15 August 2012 15:40 -
For example, in C# the declaration int i; will reserve 32 bits for variable i.
A pointer declaration reserves memory for the address or the pointer variable, but not for the
data that it will point to. The memory for the data pointed by a pointer has to be allocated at
runtime.
The memory reserved by the compiler for simple variables and for storing pointer address is
allocated on the stack, while the memory allocated for pointer referenced data at runtime is
allocated on the heap.
Is Pointer a variable?
Yes, a pointer is a variable and can be used as an element of a structure and as an attribute of
a class in some programming languages such as C++, but not Java. However, the contents of
a pointer is a memory address of another location of memory, which is usually the memory
address of another variable, element of a structure, or attribute of a class.
What is significance of ” * ” ?
The symbol “*” tells the computer that you are declaring a pointer.
Actually it depends on context.
In a statement like int *ptr; the ‘*’ tells that you are declaring a pointer.
In a statement like int i = *ptr; it tells that you want to assign value pointed to by ptr to variable i.
7 / 10
Data Structures Interview Questions and Answers
Written by Shaukat
Wednesday, 15 August 2012 15:40 -
What is a queue ?
A Queue is a sequential organization of data. A queue is a first in first out type of data
8 / 10
Data Structures Interview Questions and Answers
Written by Shaukat
Wednesday, 15 August 2012 15:40 -
structure. An element is inserted at the last position and an element is always taken out from
the first position.
When an element is removed front will be incremented by 1. In case it reaches past the last
index available it will be reset to 0. Then it will be checked with end. If it is greater than end
queue is empty.
When an element is added end will be incremented by 1. In case it reaches past the last index
available it will be reset to 0. After incrementing it will be checked with front. If they are equal
queue is full.
9 / 10
Data Structures Interview Questions and Answers
Written by Shaukat
Wednesday, 15 August 2012 15:40 -
What member function places a new node at the end of the linked list?
The appendNode() member function places a new node at the end of the linked list. The
appendNode() requires an integer representing the current data of the node.
What are the major data structures used in the following areas : RDBMS, Network data model &
Hierarchical data model.
1. RDBMS Array (i.e. Array of structures)
2. Network data model Graph
3. Hierarchical data model Trees.
10 / 10