Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 4 out of 68 pages
Exam (elaborations)

WGU C949 DATA STRUCTURES AND ALGORITHMS (2 VERSIONS)- EXAMINATION COMPLETE QUESTIONS AND DETAILED SOLUTIONS LATEST UPDATE THIS YEAR JUST RELEASED

Document preview thumbnail
Preview 4 out of 68 pages

WGU C949 DATA STRUCTURES AND ALGORITHMS (2 VERSIONS)- EXAMINATION COMPLETE QUESTIONS AND DETAILED SOLUTIONS LATEST UPDATE THIS YEAR JUST RELEASED

Content preview

WGU C949 DATA STRUCTURES AND ALGORITHMS (2 VERSIONS)
- EXAMINATION COMPLETE
QUESTIONS AND DETAILED SOLUTIONS
LATEST UPDATE THIS YEAR JUST RELEASED


Question 1: A list where we start at the first node and follow the
chain of nodes iterating over each until we get to the end
Answer:
Singly Linked List


Question 2: A list that builds on the singly linked list by adding
reverse iteration.
Answer:
Doubly Linked List


Question 3: A container where data is stored in nodes consisting of
a single data item and a reference to the next node
Answer:
Linked List


Question 4: A ______ is a container where nodes of data are linked
together into a list Linked
Answer:
List


Question 5: Linking together complex nodes into a single structure
Linked
Answer:

, List


Question 6: Each link in a chain for a linked lists is called a ______
node
Answer:
What two things do nodes contain?


Question 7: 1. the value
Answer:
2. reference to next item in the list


Question 8: Give a coded example on how to create a 3 chained
linked list of nodes. Node head = new Node(1); head.Next = new
Node(2); head.Next.Next = new Node(3);
Answer:
Give a coded example on how to create a doubly linked list


Question 9: Node node1 = new Node(1);
Answer:
Node node2 = new Node(2);


Question 10: Node node3 = new Node(3); node1.Next = node2;
node2.Previous = node1; node2.Next = node3; node3.Previous =
node2;
Answer:

, The first and last nodes of a doubly linked list should have a value of ______
null


Question 11: Adds a value to the beginning of the list
Answer:
AddHead


Question 12: Adds a value at the end of the linked list
Answer:
AddTail


Question 13: Finds the first node whose value equals the provided
argument Find
Answer:
Returns true if the specified value exists in the list, false otherwise Contains


Question 14: Removes the first node on the list whose value is
equal to the argument Remove
Answer:
A doubly linked list where the values are inserted and sorted in order Sorted


Question 15: Data Structure
Answer:
A data structure that stores subitems, with a name associated with each
subitem.

, Question 16: accessible by a positional index.
Answer:
Array


Question 17: A data structure that stores ordered list of items in
nodes, where each node stores data and has a pointer to the next
node. linked list
Answer:
A data structure in which each node stores data and has up to two children,
known as


Question 18: a left child and a right child. binary tree
Answer:
A data structure that stores unordered items by mapping (or hashing) each
item to a


Question 19: location in an array. hash table
Answer:
A functions whose cost scales linearly with the size of the input O(n)


Question 20: Iterating over a collection of data once often indicates
an ______ algorithm. (alphabet for-loop example)
Answer:
O(n)


Question 21: A functions whose cost scales logarithmically with
the input size O(log n)

Document information

Uploaded on
August 20, 2026
Number of pages
68
Written in
2026/2027
Type
Exam (elaborations)
Contains
Questions & answers
$26.99

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
TopGradeExams
4.1
(21)
Sold
144
Followers
4
Items
4714
Last sold
5 days ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions