0% found this document useful (0 votes)
17 views

Data Structure Interview

Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
17 views

Data Structure Interview

Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
You are on page 1/ 10
Data Structure Interview CREATE BY - ATUL KUMAR (LINKEDIN) . What is data structure? ¥ @@atulkumarx A data structure 1s a way of organizing data that considers not only the items stored, but also their lationship to each other. Advance knowledge about the relationship between data items allow \gning of efficient algorithms for the manipulation of data 2. List out the areas in which data structures are applied extensively? 1. Compiler Design Bas oba auosicveet — “| ee Database Management System, —_stoce sortng Statistical analysis package, neoy = — Numerical Analysi Mon Graphic weap —\ Artificial Intelligence eee prea: Ragersming 3. What are the major data structures used in the following areas : RDBMS, Network data model and Hierarchical data model. 1. RDBMS = Array (i.e. Array of structures Network data model = Graph 3, Hierarchical data mode! = Tre 4, 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 's @ generic pointer type 5. Minimum number of queues needed to implement the priority queue? >. One queue is used for actual storing of data and another for storing prioritic 6. What is the data structures used to perform recursion? Stack. Because of its LIFO (Last In First Out) property it remembers its ‘caller’ so kno: ‘eturn when the function has to return. Recursion makes use of system stack for stor addresses of the function cal Every recursive function has its equivalent iterative (non-recursive) function, Even when such equivalent iterative procedures are written, explicit stack is to be used. [CODING BUGS EINOTES GALLERY 7. What are the notations used in Evaluation of Arithmetic Expressions using prefix and Polish and Reverse Polish notation 8. Convert the expression ((A + B) * C- (D - E) * (F + G)) to equivalent Prefix and Postfix notations. 1, Prefix Notation: - * +ABC * - DE + FG 2. Postfix Notation: AB + C* DE-FG + * 9. Sorting is not possible by using which of the following methods? (Insertion, Selection, Exchange, Deletion) Sorting is not possible in Deletion. Using insertion we can perform insertion sort, using selection we can perform selection sort, using exchange we can perform the bubble sort (and other similar ‘orting methods). But no sorting method can be done just using deletion, 10. What are the methods available in storing sequential files ? Straight merging, Natural merging, Polyphase sort Distribution of Initial run: 11, List out few of the Application of tree data-structure? The manipulation of Arithmetic expression, Symbol Table consteuction, 3, Syntax analysis 12, List out few of the applications that make use of Multilinked Structures? 1. Sparse matrix 2. Index generation 13. In tree construction which is the suitable efficient data structure? (Array, Linked list, Stack, Queue) Linked list is the suitable efficient data structure 14, What is the type of the algorithm used in solving the 8 Queens problem? Backtracking. 15. In an AVL tree, at what condition the balancing is to be done? If the ‘pivotal value’ (or the ‘Height factor’) is greater than 1 or less than -1 SICODING BUGS EINOTES GALLERY 16. What is the bucket size, when the overlapping and collision occur at same time? One. If there is only one entry po the bucket, when the collision occurs, there is no way to accommodate the colliding value, This results in the overlapping of val 17. Classify the Hashing Functions based on the various methods by which the key value is found. Direct method Subtraction metho Modulo- Division method, Digit-Extraction method, Mid-Square metho, Folding method, 18. What are the types of Collision Resolution Techniques and the methods used in each of the type? Open addressing (closed hashing), The methods used include: Overflow block Closed addressing (open hashing), The methods used include: Linked list, Binary tree 19. In RDBMS, what is the efficient data structure used in the internal storage representation? B# tree, Because in B+ he dat fed only in leaf nodes, that makes search easier. This corresponds to the records 20. What is a spanning Tree? A spanning tree is a tree associated with a ne \e graph appear on the tree once. A minimum spanning tree is @ at the total edge weight between nodes is minimized. 21. Does the minimum spanning tree of a graph give the shortest distance between any 2 specified nodes? No, The Minimal spanning tree assures that the total tree is kept at its minim But it doesn’t mean that the distance between any tw fed in the minimum: spanning tree is minimum 22, Which is the simplest file structure? (Sequential, Indexed, Random) Sequential is the simplest file structure . 23, Whether Linked List is linear or Non-linear data structure? According to Access strategies Linked 3 linear on According to Storage Linked List is a Non-linea OTHER QUESTIONS 1) What is data structure? [CODING BUGS EINOTES GALLERY 4 structure refers to the way data is organized and manipulated. It seeks to find ways to make data access more efficient. When deal h data structure, we not only focus on one piece of data, but rather different set of data and how they can relate to one another in an organized manner. 2) Differentiate file structure from storage struct Basically, the key difference is the memory area that is being accessed. When dealing with the structure that resides the main memory of the computer system, this is referred to as storage structure. When dealing with an auxiliary structure, we refer to it as file structure ‘ch best applied? A binary search is an algorithm that is best applied to search a list when the elements are already in order or sorted. The list is search starting in the middle, such that if that middle value is not the target search key, it will check to see if it will continue the search on the lower half of the list or the higher half. The split and search will then continue in the same manner 4) What is a linked list? A linked list is a sequence of nodes in which each node is connected to the node following it. This forms a chain-like link of data storage. 5) How do you reference all the elements in one-dimension ar To do this, an indexed loop is used, such that the counter runs from 0 to the array size minus one. In this manner, we are able to reference all the elements in sequence by using the loop counter as the array subscript 6) In what areas do data structures applied? ata structure is important in almost every aspect where data is involved. In general, algorithms that involve efficient data structure is applied in the following areas: numer analysis, operating system, A.|., compiler design, database management, graphics, and statistical analysis, to name a tew. 7) What is LIFO? [CODING BUGS EINOTES GALLERY LIFO is short for Last In First Out, and refers to how data is accessed, stored and retrieved. Using this scheme, data that was stored last , should be the one to be extracted first. This also means that in order to gain access to the first data, all the other data that was stored before this first data must first be retrieved and extracted 8) What is a quei A queue is a data structure that can simulates a list or stream of data. In this structure, new elements are inserted at one end and existing elements are removed from the other end 9) What are binary trees? A binary tree is one type of data structure that has two nodes, a left node and a right node. In programming, binary trees are actually an extension of the linked list 10) Which data structure is applied when dealing with a recursive functior Recursion, which is basically a function that calls itself based on a terminating condition, makes use of the stack. Using LIFO, a call to a recursive function saves the return address so that it knows how to return to the calling function after the call terminates. 11) What isa stack? Astack is a data structure in which only the top element can be accessed. As data is stored in the stack, each data is pushed downward, leaving the most recently added data on top. eae See EICODING BUGS EINOTES GALLERY| A binary search tree stores data in such a way that they can be retrieved vory efficiently The left subtree contains nodes whose keys are less than the node's key value, while the contains nodes whose keys are greater than or equal to the node's key value Moreover, both subtrees are also binary search trees 13) Wha e multidimensional arrays? Multidimensional arrays make use of multiple indexes to store data. It is useful when storing data that cannot be represented using a single dimensional indexing, such as data representation in a board game, tables with data stored in more than one column. 14) Are linked lists or non-linear data structure? It actually depends on where you intend to apply linked lists. If you based it on storage, a linked list is considered non-linear. On the other hand, if you based it on access strategies. then a linked list is considered linear. 15) How does dynamic memory allocation help in managing data Aside from being able to store simple structured data types, dynamic memory allocation can combine separately allocated structured blocks to form composite structures that expand and contract as needed. 16) What is FIFO? FIFO is short for First-in, First-out, and is used to represent how data is a dina queue. Data has been inserted into the queue list the longest is the one that is removed first 17) What is an ordered list? An ordered list is a list in which each node's position in the list is determined by the value of its key component, so that the key values form an increasing sequence, as the list is traversed 18) What is merge sort? Merge sort takes a divide-and-conquer approach to sorting data. In a sequence of data, adjacent ones are merged and sorted to create bigger sorted lists. These sorted lists are EICODING BUGS ENOTES GALLERY, then merged again to form an even bigger sorted list, which continuous until you have one single sorted list 19) Differentiate NULL and VOID, Null is actually a value, whereas Void is a data type identifier. A variable that is given a Null value simply indicates an empty value. Void is used to identify pointers as having no initial size. 20) What is the primary advantage of a linked list? A linked list is a very ideal data structure because it can be modified easily. This means that modifying a linked list works regardless of how many elements are in the list. 21) What is the difference between a PUSH and a POP Pushing and popping applies to the way data is stored and retrieved in a stack. A push denotes data being added to it, meaning data is being “pushed” into the stack. On the other hand, a pop denotes data retrieval, and in particular refers to the topmost data being accessed 22) What is a linear search? A linear search refers to the way a target key is being searched in a sequential data structure. Using this method, each element in the list is checked and compared agai target key, and is repeated until found or if the end of the list has been reached. 23) How does variable 1 affect memory allocation? The amount of memory to be allocated or reserved would depend on the data type of the variable being declared. For example, if a variable is declared to be of integer type, then 32 bits of memory storage will be reserved for that variable 24) What is the advantage of the heap over a stack? Basically, the heap is more flexible than the stack. That's because memory space for the heap can be dynamically allocated and de-allocated as needed. However, memory of the heap can at times be slower when compared to that stack. ) What isa SICODING BUGS EINOTES GALLERY A postfix expression is an expression in which each operator follows its operands. The advantage of this form is that there is no need to group sub- expressions in parentheses or to consider operator precedence. 26) W Data abstraction is a powerful tool for breaking down complex data problems into manageable chunks. This is applied by initially specifying the data objects involved and the operations to be performed on these data objects without being overly concerned with how the data objects will be represented and stored in memory. 27) How do you insert a new item in a binary search tre ‘Assuming that the data to be inserted is a unique value (that is, not an existing entry in the tree), check first if the tree is empty. If it's empty, just insert the new item in the root node. It it's not empty, refer to the new item's key. If it's smaller than the root's key, insert it into the root's left subtree, otherwise, insert it into the root's right subtree. 28) How does a selection sort work for an The selection sort is a fairly intuitive sorting algorithm,, though not necessarily efficient. To perform this, the smallest element is first located and switched with the element at subscript zero, thereby placing the smallest element in the first position. The smallest element remaining in the subarray is then located next with subscripts 1 through n-1 and switched with the element at subscript 1, thereby placing the second smallest element in the second position. The steps are repeated in the same manner till the last element 29) How do signed and unsigned numbers affect memory? In the case of signed numbers, the first bit is used to indicate whether positive or negative, which leaves you with one bit short, With unsigned numbers, you have all bits available for that number. The effect is best seen in the number range (unsigned 8 bit number has a range 0-255, while 8-bit signed number has a range -128 to +127 30) What is the minimum number of nodes that a binary tree can have? A binary tree can have a minimum of zero nodes, which occurs when the nodes have NULL values. Furthermore, a binary tree can also have 1 or 2 nodes. SICODING BUGS EINOTES GALLERY 31) What are dynamic data structure Dynamic data structures are structures that expand and contract as a program runs. It provides a flexible means of manipulating data because it can adjust according to the size of the data 32) In what data structures are pointers applied? Pointers that are used in linked list have various applications in data structure. Data structures that make use of this concept include the Stack, Queue, Linked List and Binary Tree. 33) Do all declaration statem ‘sult in a fixed reservation in memory? Most declarations do, with the exemption of pointers. Pointer declaration does not allocate memory for data, but for the address of the pointer variable. Actual memory allocation for the data comes during run-time. M)W ARRAYs? When dealing with arrays, data is stored and retrieved using an index that actually refers to the element number in the data sequence. This means that data can be accessed in any order. In programming, an array is declared as a variable having a number of elements 35) What is the ct c implementing a priority queu The minimum number of queues needed in this case is two. One queue is intended for sorting priorities while the other queue is intended for actual storage of data. 36) Which sorting, hm is considered the fastest? There are many types of sorting algorithms: quick sort, bubble sort, balloon sort, radix sort, merge sort, etc. Not one can be considered the fastest because each algorithm is designed for a particular data structure and data set. It would depend on the data set that you would want to sort. 37) Differ SJCODING BUGS EINOTES GALLERY Data that is stored in a stack follows a LIFO pattern. This means that data access follows a sequence wherein the last data to be stored will the first one to be extracted. Arrays, on the other hand, does not follow a particular order and instead can be accessed by referring to the indexed element within the array. 38) Give a basic algorithm for searching a binary search tree. 1. if the tree is empty, then the target is not in the tree, end search 2. if the tree is not emply, the target is in the tree 3. check if the target is in the root item 4. if target is not in the root item, check if target is smaller than the root's value 5. if target is smaller than the root's value, search the left subtree 6. else, search the right subtree 39) What isa dequeue? A dequeue is a double-ended queue. This is a structure wherein elements can be inserted or removed from either end. 40) What isa bubble sort and how do you perform it? A bubble sort is one sorting technique that can be applied to data structures such as an array. It works by comparing adjacent elements and exchanges their values if they are out of order. This method lets the smaller values “bubble” to the top of the list, while the larger value sinks to the bottom 41) What are the parts of a linked list? A linked list typically has two parts: the head and the tail. Between the head and tail lie the actual nodes, with each node being linked in a sequential manner 42) How does selection sort work? Selection sort works by picking the smallest number from the list and placing it at the front This process is repeated for the second position towards the end of the list. It is the simplest sort algorithm (CREATE BY - ATUL KUMAR (LINKEDIN) 43) What is a graph? ¥ @@atulkumarx. SICODING BUGS EINOTES GALLERY

You might also like