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
Exam (elaborations)

WGU C949 Data Structures and Algorithms Frequently Tested Exam Questions With Verified Multiple Choice and Conceptual Actual 100% Correct Detailed Answers Guaranteed Pass!!Current Update!!

Rating
-
Sold
-
Pages
44
Grade
A+
Uploaded on
28-11-2025
Written in
2025/2026

WGU C949 Data Structures and Algorithms Frequently Tested Exam Questions With Verified Multiple Choice and Conceptual Actual 100% Correct Detailed Answers Guaranteed Pass!!Current Update!! list of important algorithms and their worst case big-O (just need to memorize) -ANSWER radix sort O(nk) mergesort O(n log(n)) Quicksort O(n^2) bubble sort O(n^2) insertion sort O(n^2) selection sort O(n^2) bucket sort O(n^2) shell sort O(n(log(n))^2) (pink means good!) 2. Python standard data types - ANSWER - Numbers - String - List - Tuple - Dictionary 3. log base 2 -ANSWER - Log base 2, also known as the binary logarithm, is the logarithm to the base 2. The binary logarithm of x is the power to which the number 2 must be raised to obtain the value x. log2(2) = 1 log2(4) = 2 log2(8) = 3 log2(16) = 4 log2(32) = 5 log2(64) = 6 log2(128) = 7 log2(256) = 8 log2(512) = 9 log2(1024) = 10 4. ADTs in standard libraries - notes - ANSWER - Most programming languages provide standard libraries that implement common abstract data types. Some languages allow programmers to choose the underlying data structure used for the ADTs. Other programming languages may use a specific data structure to implement each ADT, or may automatically choose the underlying data-structure.

Show more Read less
Institution
WGU C949 DATA STRUCTURES AND ALGORITHMS OA
Course
WGU C949 DATA STRUCTURES AND ALGORITHMS OA

Content preview

WGU C949 Data Structures and Algorithms Frequently Tested Exam Questions With
Verified Multiple Choice and Conceptual Actual 100% Correct Detailed Answers
Guaranteed Pass!!Current Update!!

radix sort O(nk)

mergesort O(n log(n))

Quicksort O(n^2)
bubble sort O(n^2)
list of important algorithms and their worst case big-O
insertion sort O(n^2)
(just need to memorize)
selection sort O(n^2)
bucket sort O(n^2)

shell sort O(n(log(n))^2)

(pink means good!)
1
log2N
N
big O notations best to worst runtimes Nlog2N
N^2
N^3
2^N
Addition, subtraction, multiplication, and division of fixed
size integer or floating point values.
w = 10.4
x = 3.4
y = 2.0
z = (w - x) / y

Assignment of a reference, pointer, or other fixed size data
value.
x = 1000
y=x
a = true


,WGU C949 Data Structures and Algorithms Frequently Tested Exam Questions With
Verified Multiple Choice and Conceptual Actual 100% Correct Detailed Answers
Guaranteed Pass!!Current Update!!

b=a

Comparison of two fixed size data values.
a = 100
b = 200
if (b > a) {
some constant time operations
...
}

Read or write an array element at a particular index.
x = arr[index]
arr[index + 1] = x + 1
Data types define particular characteristics of data used
in software programs and inform the compilers about
data type
predefined attributes required by specific variables or as-
sociated data objects.
Numbers
String
Python standard data types List
Tuple
Dictionary
A class. A data type that can store data and methods;

An abstract data type (ADT) is a data type described by
predefined user operations, such as "insert data at rear,"
abstract data type without indicating how each operation is implemented.
An ADT can be implemented using ditterent underlying
data structures. However, a programmer need not have
knowledge of the underlying implementation to use an
ADT.




, WGU C949 Data Structures and Algorithms Frequently Tested Exam Questions With
Verified Multiple Choice and Conceptual Actual 100% Correct Detailed Answers
Guaranteed Pass!!Current Update!!

the assignment of memory locations to data
storage allocation
and program code.
abstract data type that represents a countable number of
ordered values, where the same value may occur more
list abstract data type than once.

Removing an item keeps the remaining items in order.xx
The over simplified answer is that arrays contain data
in contiguous space in memory and lists generally store
their information in non-contiguous space. In an array you
know what the next data element is by moving down to
the next element like moving to the house next door on a
street. It's the physical displacement across a standard size
memory boundary that lets you find the next element.

In an "list" each element in the list keeps a "pointer" to the
location of the next element in the list. So in an array you
array vs (linked) list can jump to the 5th element just as you can walk straight
to the fifth house on a street. In a list you'd have to knock
on each house's door and ask inside what the address of
the next house in the group (i.e. list) is. That next house
could be anywhere in the city.

(source: StackOverflow, user mba12)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If a program requires fast insertion of new data, a linked
list is a better choice than an array.


in Python, what is the ditterence between an array and a
list?



, WGU C949 Data Structures and Algorithms Frequently Tested Exam Questions With
Verified Multiple Choice and Conceptual Actual 100% Correct Detailed Answers
Guaranteed Pass!!Current Update!!

Arrays and lists are both used in Python to store data, but
they don't serve exactly the same purposes. They both can
be used to store any data type (real numbers, strings, etc),
and they both can be indexed and iterated through, but
the similarities between the two don't go much further.
The main ditterence between a list and an array is the
functions that you can perform to them. For example, you
can divide an array by 3, and each number in the array
will be divided by 3 and the result will be printed if you
request it. If you try to divide a list by 3, Python will tell you
that it can't be done, and an error will be thrown.

Here's how it would work:
x = array([3, 6, 9, 12])
x/3.0
print(x)
In the above example, your output would be:
array([1, 2, 3, 4])

If you tried to do the same with a list, it would very similar:
y = [3, 6, 9, 12]
y/3.0
print(y)
It's almost exactly like the first example, except you
wouldn't get a valid output because the code would throw
an error.

It does take an extra step to use arrays because they
have to be declared while lists don't because they are
part of Python's syntax, so lists are generally used more
often between the two, which works fine most of the time.
However, if you're going to perform arithmetic functions

Written for

Institution
WGU C949 DATA STRUCTURES AND ALGORITHMS OA
Course
WGU C949 DATA STRUCTURES AND ALGORITHMS OA

Document information

Uploaded on
November 28, 2025
Number of pages
44
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$13.99
Get access to the full document:

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

Get to know the seller

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.
NURSINGDICTIONARY Harvard University
View profile
Follow You need to be logged in order to follow users or courses
Sold
270
Member since
2 year
Number of followers
87
Documents
3060
Last sold
4 days ago
NURSING ENCYCLOPEDIA

As a Career Tutor, I understand the pressure of managing demanding coursework, exams, and practical requirements across multiple disciplines. These professionally organized revision materials are designed to support students in nursing, healthcare administration, business, information systems, Engineering, health, IT, or trade courses management programs by simplifying complex concepts and reinforcing high-yield academic content. The materials are developed to help students: Understand core theories and practical applications across Multiple Disciplines Review exam relevant content aligned with undergraduate and graduate curriculam To Strengthen critical thinking, analytical reasoning, and decision-making skills Save time with clear, structured summaries instead of overwhelming textbooks Prepare efficiently for tests, assignments, case studies, and professional exams Each resource is created with academic standards in mind, integrating real world examples, industry terminology, and evidence based concepts commonly required in professional programs. Whether you are studying nursing fundamentals, healthcare management, information systems, project management, business strategy, Engineering these materials provide focused, reliable support for academic success. These revision guides are ideal for: Nursing and allied health students Healthcare administration and public health students Business, MBA, and management students Information technology and information systems students, engineering, business, IT, or trade courses If you are looking for clear, student-friendly, exam-focused revision materials that support multiple career pathways, these resources are designed to help you study smarter, perform better, and stay confident throughout your academic journey. WISH YOU SUCCESS!!

Read more Read less
4.2

34 reviews

5
18
4
7
3
7
2
1
1
1

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