Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Examen

Data Structure and Algorithm - Updated Exam Questions with Answers

Puntuación
-
Vendido
-
Páginas
4
Grado
A+
Subido en
12-04-2025
Escrito en
2024/2025

Data Structure and Algorithm - Updated Exam Questions with Answers Algorithm - Correct Answers: A computable set of steps to achieve a desired result. Array - Correct Answers: In programming, a list of data values, all of the same type, any element of which can be referenced by an expression consisting of the array name followed by an indexing expression. Arrays are part of the fundamentals of data structures, which, in turn, are a major fundamental of computer programming Data Structure - Correct Answers: The term data structure refers to the way data is organized for use within a program. Correct organization of data can lead to simpler and more efficient algorithms. Common data structures are linked-lists, stacks, queues and trees. FIFO - Correct Answers: First in first out is a policy that items are processed in order of arrival. A QUEUE implements this. Insertion Sort - Correct Answers: Sort by repeatedly taking the next item and inserting it into the final data structure in its proper order with respect to items already inserted. LIFO - Correct Answers: Last in first out is a policy that the most recently arrived item is processed first. A STACK implements this. Linked List - Correct Answers: A data structure in which a list of nodes or elements of a data structure connected by pointers. A singly linked list has one pointer in each node pointing to the next node in the list; a doubly linked list has two pointers in each node pointing to the next and previous nodes. In a circular list, the first and last nodes of the list are linked together. Linear Search - Correct Answers: A simple, though inefficient, search algorithm that operates by sequentially examining each element in a list until the target element is found or the last has been completely processed. Linear searches are primarily used only with very short lists. Also called sequential search. merge sort - Correct Answers: A sort algorithm that splits the items to be sorted into two groups, recursively sorts each group, and merges them into a final, sorted sequence. Node - Correct Answers: A unit of reference in a data structure. Also called a vertex in graphs and trees. (2) A collection of information which must be kept at a single memory location. Infix Notation - Correct Answers: Notation in which the operator separates its operands. E.g. (a + b) * c. Infix notation requires the use of brackets to specify the order of evaluation, unlike either prefix or postfix notations. Postfix Notation - Correct Answers: Reverse Polish Notation or Suffix Notation Notation in which the operator follows its operands. E.g. a + b * c represented as abc*+. Prefix Notation - Correct Answers: Polish Notation Notation in which the operator comes before its operands. E.g. a + b represented as +ab. Queue - Correct Answers: A data structure with first-in first-out behavior, supporting the operations enqueue (to insert) and dequeue (to remove) Selection Sort - Correct Answers: A sort algorithm that repeatedly looks through remaining items to find the least one and moving it to its final location. The run time is (n2), where n is the number of comparisons. The number of swaps is O(n). Sort - Correct Answers: Arrange items in a predetermined order. There are dozens of algorithms, the choice of which depends on factors such as the number of items relative to working memory, knowledge of the orderliness of the items or the range of the keys, the cost of comparing keys vs. the cost of moving items, etc. Quicksort - Correct Answers: An in-place sort algorithm that uses the divide and conquer paradigm. It picks an element from the array (the pivot), partitions the remaining elements into those greater than and less than this pivot, and recursively sorts the partitions Stack - Correct Answers: A data structure with last-in first-out behavior, supporting the operations push (to insert) and pop (to remove) Singly Linked List - Correct Answers: A data structure in which a list of nodes or elements of a data structure connected by pointers. A singly linked list has one pointer in each node pointing to the next node in the list. Start symbol - Correct Answers: The nonterminal symbol that stands for a complete valid utterance in the language being parsed. The start symbol is usually listed as the first nonterminal symbol in a language specification. Symbol table - Correct Answers: A data structure where symbol names and associated data are stored during parsing to allow for recognition and use of existing information in repeated uses of a symbol. Heap - Correct Answers: A complete tree where every node has a key more extreme (greater or less) than or equal to the key of its parent. Usually understood to be a binary heap. Good for: priority queues Binary Tree - Correct Answers: A specific type of tree data structure in which each node has at most two subtrees, one left and one right. Binary trees are often used for sorting information; each node of the binary search tree contains a key, with values less than that key added to left subtree and values greater than that key added to the right subtree. Binary Search Tree - Correct Answers: A data structure with in which every node refers to a left subtree and a right subtree such that all values in the left subtree are smaller than the value in the node and all elements in the right subtree are greater than (or equal to) the value in the node. The top node is called the root. The nodes with no children (left and right subtrees empty) are called leaves. Hash Table - Correct Answers: A dictionary in which keys are mapped to array positions by a hash function. Having more than one key map to the same position is called a collision. There are many ways to resolve collisions, but they may be divided into open addressing, in which all elements are kept within the table, and chaining, in which additional data structures are used. In-order Traversal - Correct Answers: Process all nodes of a tree by recursively processing the left subtree, then processing the root, and finally the right subtree. Level-order Traversal - Correct Answers: Process all nodes of a tree by depth: first the root, then the children of the root, etc. Postorder Traversal - Correct Answers: Process all nodes of a tree by recursively processing the left subtree, then processing the right subtree, and finally the root. Recursion - Correct Answers: An algorithmic technique where a function, in order to accomplish a task, calls itself with some part of the task. Tree Traversal - Correct Answers: A technique for processing the nodes Network - Correct Answers: A set of computers that can intercommunicate. *Think of network as a house with a bunch of doors to different applications.

Mostrar más Leer menos
Institución
Data Structures And Algorithm Analysis In C+
Grado
Data Structures and Algorithm Analysis in C+

Vista previa del contenido

Data Structure and Algorithm -
Updated Exam Questions with
Answers
Algorithm - Correct Answers: A computable set of steps to achieve a desired result.



Array - Correct Answers: In programming, a list of data values, all of the same type, any element of
which can be referenced by an expression consisting of the array name followed by an indexing
expression. Arrays are part of the fundamentals of data structures, which, in turn, are a major
fundamental of computer programming



Data Structure - Correct Answers: The term data structure refers to the way data is organized for use
within a program. Correct organization of data can lead to simpler and more efficient algorithms.
Common data structures are linked-lists, stacks, queues and trees.



FIFO - Correct Answers: First in first out is a policy that items are processed in order of arrival. A QUEUE
implements this.



Insertion Sort - Correct Answers: Sort by repeatedly taking the next item and inserting it into the final
data structure in its proper order with respect to items already inserted.



LIFO - Correct Answers: Last in first out is a policy that the most recently arrived item is processed first. A
STACK implements this.



Linked List - Correct Answers: A data structure in which a list of nodes or elements of a data structure
connected by pointers. A singly linked list has one pointer in each node pointing to the next node in the
list; a doubly linked list has two pointers in each node pointing to the next and previous nodes. In a
circular list, the first and last nodes of the list are linked together.



Linear Search - Correct Answers: A simple, though inefficient, search algorithm that operates by
sequentially examining each element in a list until the target element is found or the last has been
completely processed. Linear searches are primarily used only with very short lists. Also called
sequential search.

Escuela, estudio y materia

Institución
Data Structures and Algorithm Analysis in C+
Grado
Data Structures and Algorithm Analysis in C+

Información del documento

Subido en
12 de abril de 2025
Número de páginas
4
Escrito en
2024/2025
Tipo
Examen
Contiene
Preguntas y respuestas

Temas

$17.29
Accede al documento completo:

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Conoce al vendedor
Seller avatar
SAVEMYEXAMS

Documento también disponible en un lote

Conoce al vendedor

Seller avatar
SAVEMYEXAMS stuvia
Seguir Necesitas iniciar sesión para seguir a otros usuarios o asignaturas
Vendido
2
Miembro desde
1 año
Número de seguidores
2
Documentos
1594
Última venta
10 meses hace
SAVEMYEXAMS

Assignments, Case Studies, Research, Essay writing service, Questions and Answers, Discussions etc. for students who want to see results twice as fast. I have done papers of various topics and complexities. I am punctual and always submit work on-deadline. I write engaging and informative content on all subjects. Send me your research papers, case studies, psychology papers, etc, and I’ll do them to the best of my abilities. Writing is my passion when it comes to academic work. I’ve got a good sense of structure and enjoy finding interesting ways to deliver information in any given paper. I love impressing clients with my work, and I am very punctual about deadlines. Send me your assignment and I’ll take it to the next level. I strive for my content to be of the highest quality. Your wishes come first— send me your requirements and I’ll make a piece of work with fresh ideas, consistent structure, and following the academic formatting rules. For every student you refer to me with an order that is completed and paid transparently, I will do one assignment for you, free of charge!!!!!!!!!!!!

Lee mas Leer menos
0.0

0 reseñas

5
0
4
0
3
0
2
0
1
0

Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes