Ctrl + F is the shortcut in your browser or operating system that allows you to find words or questions quickly.
Ctrl + Tab to move to the next tab to the right and Ctrl + Shift + Tab to move to the next tab to the left.
On a phone or tablet, tap the menu icon in the upper-right corner of the window; Select "Find in Page" to search a question.
Share UsSharing is Caring
It's the biggest motivation to help us to make the site better by sharing this to your friends or classmates.
Is a collection of steps to solve a particular problem. Learning data structures and algorithms allow us to write efficient and optimized computer programs.
Herder node is used as sentinel in __________________.
Which of the following is not the part of ADT description?
The root of a tree is the node that has no ancestors.
Which indicates pre-order traversal?
A complete digraph is a directed graph in which every pair of distinct vertices is connected by a ___of unique edges (one in each direction).
A program to maintain the routes in an airline.
It is a pile in which items are added at one end and removed from the other.
Dijkstra's algorithm works correctly, because all edge weights are non-________, and the vertex with the least shortest-path estimate is always chosen.
A connected graph T without any cycles is called ________________.
Sorting algorithm can be characterized as ________________.
_____matrix in graph theory is a matrix sized n*n , where n is the number of vertices of the graph.
A hash function is a function which when given a key, generates an address in the table.
Which of the following is non-linear data structure?
______ are a common method to visually illustrate relationships in the data.
What is a run list?
The retrieval of items in a stack is ___________ operation.
A hash______ is a data structure that is used to store keys/value pairs.
Breadth-first-search is the algorithm that will find shortest paths in an _____ graph.
A simple graph may be either ____________.
In linked representation of stack, the null pointer of the last node in the list signals _____________________.
Which data structure is suitable to represent the hierarchal relationship between elements?
Which of the following data structure is non-linear type?
A binary search tree is another name for a binary tree.
Shortest path algorithms are a family of algorithms designed to solve the shortest path problem.
The hash table should be an array with length about _ times the maximum number of keys that will actually be in the table, and. Size of hash table array should be a prime number.
Deletion operation is done using __________ in a queue.
This is the insertion operation in the stack.
The complexity of merge sort algorithm.
The dummy header in linked list contains ____________________.
____________________ is not the component of data structure.
What is a queue?
A program to receive data that is to be saved and processed in the reverse order.
The Three methods in HASHING in open addressing are linear probing, quadratic probing, and _____hashing.
A graph is a picture designed to express words, particularly the connection between two or more quantities.
Which of the following is not the required condition for binary search algorithm?
Which of the following is true about the characteristics of abstract data types? i. It exports a type. ii. It exports a set of operations.
Which of the following data structure can't store the non-homogeneous data elements?
On average, searching in a binary search tree is faster than searching in a list.
__________________ is putting an element in the appropriate place in a sorted list yields a larger sorted order list.
A stack displays FIFO behavior.
Which of the following names does not relate to stacks?
A stack and a queue are different names for the same ADT.
______ is one of the most powerful and advanced data structures. It is a non-linear data structure compared to arrays, linked lists, stack and queue. It represents the nodes connected by edges.
Draw the binary search tree whose elements are inserted in the following order: 50 72 96 94 107 26 12 11 9 2 10 25 51 16 17 95 If Print is applied to the tree formed above, in which order would the elements be printed?
These are binary trees with threads.
A list may be linear or nonlinear, depending on its implementation.
The value in the right child of a node (if it exists) in a binary search tree will be greater than the value in the node itself.
Comparing BFS and DFS, the big advantage of DFS is that it has much _____memory requirements than BFS, because it's not necessary to store all of the child pointers at each level.
If the number of records to be sorted is small, then __________ sorting can be efficient.
The average case occurs in linear search algorithm _______________.
Algorithms that use a list must know whether the list is array based or linked.
The following algorithm is a count-controlled loop going from 1 through 5. At each iteration, the loop counter is either printed or put on a queue depending on the result of Boolean function RanFun(). (The behavior of RanFun() is immaterial.) At the end of the loop, the items on the queue are dequeued and printed. Because of the logical properties of a queue, this algorithm cannot print certain sequences of the values of the loop counter. You are given an output and asked if the algorithm could generate the output. Set count to 0 WHILE (count < 5) Set count to count + 1 IF (RanFun()) Write count, ' ' ELSE Enqueue(myQueue, count) WHILE (NOT IsEmpty(myQueue)) Dequeue(myQueue, number) Write number, ' ' The following output is possible using a queue: 1 3 5 4 2
The rearranging of pairs of elements which are out of order, until no such pairs remain.
A hash function that returns a unique hash number is called a _______hash function.
The eight most commonly used graphs are linear, power, quadratic, polynomial, rational, ______, logarithmic, and sinusoidal.
This form of access is used to add and remove nodes from a queue.
A linear list in which the pointer points only to the successive node.
Binary search algorithm cannot be applied to _______________.
The complexity of sorting algorithm measures the __________ as a function of the number n of items to be shorter.
Linked representation of binary tree needs ______ parallel arrays.
Path Matrix in graph theory is a matrix sized ___ , where n is the number of vertices of the graph.
Which of the following is/are the levels of implementation of data structure?
Hashing is also used in encryption.
Which data structure allows deleting data elements from and inserting at rear?
The worst case occurs in linear search algorithm when ________________.
A queue displays LIFO behavior.
Identify the data structure which allows deletions at both ends of the list but insertion at only one end.
A program to keep track of patients as they check into a medical clinic, assigning patients to doctors on a first-come, first-served basis.
A program to keep track of family relationships
Bellman Ford algorithm is useful in finding shortest path from a given source vertex to all the other vertices even if the graph contains a _______ weight edge.
State True or False for internal sorting algorithms. i. Internal sorting are applied when the entire collection if data to be sorted is small enough that the sorting can take place within main memory. ii. The time required to read or write is considered significant in evaluating the performance of internal sorting.
The value in the left child of a node (if it exists) in a binary search tree will be greater than the value in the node itself.
A connected graph T without any cycles is called a ____________.
The _______ algorithm is a graph search algorithm that finds the shortest path between a given source vertex and all other vertices in the graph.
Which of the following sorting algorithm is of priority queue sorting type?
_________ algorithms work by recursively constructing a set of objects from the smallest possible constituent parts.
Which is the pointer associated with the stack?
This is a linear list in which insertions and deletions are made to form either end of the structure.
Linked lists are best suited _____________________.
Graphs are a powerful and versatile data structure that easily allow you to represent real life relationships between different types of data (nodes).
LINK is the pointer pointing to the ____________________.
Trees are ________ if they are similar and have the same contents at corresponding nodes.
A linear list in which the last node points to the first node.
A bank simulation of its teller operation to see how waiting times would be affected by adding another teller.
Each node in singly linked list has _______ fields.
This indicates the end of the list.
This form of access is used to add/remove nodes from a stack.
The Floyd-Warshall algorithm outputs the correct result as long as no negative cycles exist in the input graph.
A pointer variable which contains the location at the top element of the stack.
A binary tree is a tree in which each node can have zero, one, or two children.
Hashing provides a more reliable and_ method of data retrieval than any other data structure.
Inserting an item into the stack when stack is not full is called ____________ while operation and deletion of item from the stack, when stack is not empty is called ________________ operation.
The four most common are probably line graphs, bar graphs and histograms, pie charts, and ?
A graph consists of a set of nodes or vertices together with a set of edges or arcs where each edge joins two ______.
The elements are removal from a stack in _________ order.
The term push and pop is related to _____________.
In linked representation of stack, ___________ fields hold the elements of the stack.
The method used by card sorter.
A program to keep track of the soccer teams in a city tournament
Each node in a linked list must contain at least ___________________.
Dijkstra's algorithm is Dijkstra's algorithm, it is neither algorithm because BFS and DFS themselves are not Dijkstra's algorithm.
The complexity of bubble sort algorithm.
Dynamic programming is a method of solving complex problems by breaking them down into simpler steps.
In a graph, if e=[u,v], then u and v are called _______________
This is the operation of processing each element in the list.
A binary search cannot be applied to a tree.
Which of the following sorting algorithm is of the divide and conquer type?
A _______________ is a data structure that organizes data similar to a line in the supermarket, where the first one in line is the first one out.
In a 2-tree, nodes with 0 children are called ___________.
Stack is also called the ________________.
A hash table is an array containing all of the keys to search on.
Value of first linked list index is _______________.
Which data structure is used in breadth first search of a graph to hold nodes?
In a graph, the vertices represent the items being modeled.
_____Algorithm : is significantly faster in the limit when you've got a really dense graph with many more edges than vertices.
This is a binary tree whose every node has either zero or two children.
A ________ is a data structure that has two types of elements, vertices and edges.
The operation of processing each element in the list is known as ________________.
Which of the following is not a limitation of binary search algorithm?
A graph is a____structure that has two types of elements, vertices and edges.
In linked lists, there are no NULL links in ______________
What happens when you push a new node onto a stack?
An electronic address book ordered by name
In an extended binary tree, nodes with 2 children are called _________________.
This refers to a linear collection of data items.
A dictionary of words used by a spelling checker to be built and maintained.
A binary search tree whose left subtree and right subtree differ in height by at most 1 unit is called ____________________.
What does the sequential representation of binary trees use?
Which of the following is an application of stack?
A word processor to have a PF key that causes the preceding command to be redisplayed. Every time the PF key is pressed, the program is to show the command that preceded the one currently displayed
Graph Algorithms or Graph ______ are analytic tools used to determine strength and direction of relationships between objects in a graph.
Kruskal's Algorithm : performs better in typical situations (sparse graphs) because it uses simpler data structures. Prim's Algorithm : is significantly ___the limit when you've got a really dense graph with many more edges than vertices.
_______ Algorithm : performs better in typical situations (sparse graphs) because it uses simpler data structures.
Which of the following data structures is linear type?
This may take place only when there is some minimum amount or no space left in free storage list.
Binary search trees are ordered.
A pseudo _____-graph is a general-graph allowing edges to connect a vertex to itself.
This is very useful in situation when data have to be stored and then retrieved in reverse order.
Breadth-____-search is the algorithm that will find shortest paths in an unweighted graph.
The complexity of linear search algorithm.
What is written by the following algorithm? Push(myStack, 5) Push(myStack, 4) Push(myStack, 4) Pop(myStack, item) Pop(myStack, item) Push(myStack, item) WHILE (NOT IsEmpty(myStack)) Pop(myStack, item) Write item, ' '
The situation when in a linked list START=NULL is ____________________.
The hash table should be an array with length about __times the maximum number of keys that will actually be in the table, and. Size of hash table array should be a prime number.
An ______hash function encodes a string of information and encodes it into a 128-bit fingerprint.
In computer science, a problem is said to have optimal substructure if an optimal solution can be constructed from optimal solutions of its subproblems.
Indexing the ________________ element in the list is not possible in linked lists.
Indicate which structure would be a more suitable choice for each of the following applications. A program keeping track of where canned goods are located on a shelf.
Graph G is _____________ if for any pair u, v of nodes in G, there is a path from u to v or path from v to u.
Which is the pointer associated with the availability list?
Eulerian refers to the Swiss mathematician _____Euler, who invented graph theory in the 18th century.
The term used to insert an element into stack.
This is a terminal node in a binary tree.
Another name for directed graph.
Partition and exchange sort is ____________.
A ________ is a data structure that is used to store keys/value pairs.
A simple graph, also called a ______graph.
In a graph, if E=(u,v), it means _____________.
A directed general-graph is a general-graph in which the set E is the set of ordered pairs of vertices.
In binary trees, nodes with no successor are called _______________.
A leaf in a tree is a node with no children.
This is the term used to delete an element from the stack.
The depth of complete binary tree is given by ________________.
An MD5 hash function encodes a string of information and encodes it into a___bit fingerprint.
In ___________ we specify an object that is used as a key, and the value we want to associate to that key.
Tree is a hierarchical data structure which stores the information naturally in the form of hierarchy style.
_______programming is a method of solving complex problems by breaking them down into simpler steps.
Every node N in a binary tree T except the root has a unique parent called the ________ of N.
Which of the following is two way lists?
Stack follows the strategy of ________________.
In the linked representation of the stack, __________ pointer behaves as the top pointer variable of stack.
New nodes are added to the ________ of the queue.
A graph is a collection of points, called vertices, and line segments connecting those points, called _______.
_____________ order is the best possible for array sorting algorithm which sorts n item.
____________________ level is where the model becomes compatible executable code.
In a linked list, the ____________ contains the address of next element in the list.
The following algorithm is a count-controlled loop going from 1 through 5. At each iteration, the loop counter is either printed or put on a queue depending on the result of Boolean function RanFun(). (The behavior of RanFun() is immaterial.) At the end of the loop, the items on the queue are dequeued and printed. Because of the logical properties of a queue, this algorithm cannot print certain sequences of the values of the loop counter. You are given an output and asked if the algorithm could generate the output. Set count to 0 WHILE (count < 5) Set count to count + 1 IF (RanFun()) Write count, ' ' ELSE Enqueue(myQueue, count) WHILE (NOT IsEmpty(myQueue)) Dequeue(myQueue, number) Write number, ' ' The following output is possible using a queue: 1 3 5 2 4
___________ sorting algorithm is frequently used when n is small, where n is the total number of elements.
What is written by the following algorithm? Enqueue(myQueue, 5) Enqueue(myQueue, 4) Enqueue(myQueue, 4) Dequeue(myQueue, item) Dequeue(myQueue, item) Enqueue(myQueue, item) WHILE (NOT IsEmpty(myQueue)) Dequeue(myQueue, item) Write item, ' '
To keep up this site, we need your assistance. A little gift will help us alot.
Donate- The more you give the more you receive.
Related SubjectObject Oriented Programming Laboratory
Mobile Programming
Network Security
Mobile Application Design and Development 2
Mobile Application Design and Development
Management Information Systems
Managing Information and Technology
Mail and Web Services
Living in the Information Technology Era
Information Technology Capstone Project
Information Technology Practicum
Introduction to Computing
Introduction to Human Computer
Introduction to Information Systems
Introduction to Multimedia
Intro to Hardware Description Language
Internet Technology in Real Estate
Integrative Programming and Technology 2
Internet Marketing and Entrepreneurship
Information Security and Management
Information Systems Operations and Maintenance
Information Assurance and Security 3
Information Assurance and Security 2
Fundamentals of Investigation and Intelligence
Fundamentals of Database System
Digital Imaging
Data Communications and Networking 2
Database Management System
Data Communications and Networking
Cyber Security: Theories and Practice
Computer Fundamentals
Chemistry for Engineers
Load Testing
Animation Project
3D Game Art Development
Auditing and Assurance Concepts and Applications
System Administration and Maintenance
Computer Programming
Integrative Programming and Technology
Data Communications and Networking 4
Current Trends and Issues
Linux Administration
Applied Business Tools and Technologies
Software Engineering
Systems Integration and Architecture
Application Lifecycle Management
Data Communications and Networking 3
Information Assurance and Security
Principles of Operating System and its Application
Quantum Computers
Programming vs Coding
Origin of Women in Computing
Software Development
Mechatronics
Computer Science
Computer Numerical Control
Computer Information Systems
Web Systems Technologies
Big Lots Business Insights
Retail Sales Surge in October
Minnesota Vikings: A Deep Dive into the Team's 2024 Season
Massage Machines
Knowledge Management
Intrusion Detection System
Retail Merchandising
Forensic Science
Geographic Information Systems
Engineering
System Analysis Design and Development
Thesis Writing 2
Shopee Cashback Voucher
Temu $0 Shipping Fee
Amazon 75% Off Discounts