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

WGU C960 Discrete Mathematics II Full Objective Assessment Practice Questions and Answers | 2026 Updated | 100% Correct.

Puntuación
-
Vendido
1
Páginas
27
Grado
A+
Subido en
21-04-2026
Escrito en
2025/2026

WGU C960 Discrete Mathematics II Full Objective Assessment Practice Questions and Answers | 2026 Updated | 100% Correct.

Institución
Grado

Vista previa del contenido

WGU C960 Discrete Mathematics II
Full Objective Assessment Practice Questions and Answers


1) Big-O Basics
Question 1:
Determine the Big-O classification of the function
[
f(n)=7n^3+4n^2+100n+9
]

Answer:
[
O(n^3)
]

Explanation:
In Big-O notation, only the highest-order term matters for large values of (n). The lower-degree
terms (4n^2), (100n), and the constant 9 become insignificant compared with (7n^3). Constants
are ignored as well, so the growth rate is (O(n^3)).




2) Comparing Growth Rates
Question 2:
Arrange the following functions from slowest-growing to fastest-growing:

[
\log n,\quad n,\quad n\log n,\quad n^2,\quad 2^n
]

Answer:
[
\log n,\quad n,\quad n\log n,\quad n^2,\quad 2^n
]

Explanation:
A logarithmic function grows more slowly than a linear function. Linear grows more slowly than
linearithmic (n\log n), which grows more slowly than quadratic (n^2). Exponential (2^n) grows
the fastest of all listed functions.

,3) Nested Loops
Question 3:
Analyze the time complexity of the following pseudocode:

count = 0
for i = 1 to n
for j = 1 to n
count = count + 1

Answer:
[
O(n^2)
]

Explanation:
The outer loop executes (n) times. For each iteration of the outer loop, the inner loop also
executes (n) times. Therefore, the total number of operations is (n \cdot n = n^2). Hence the
running time is (O(n^2)).




4) Triangular Loop Count
Question 4:
Find the time complexity of the following pseudocode:

for i = 1 to n
for j = 1 to i
print(i, j)

Answer:
[
O(n^2)
]

Explanation:
The total number of inner loop iterations is:

[
1+2+3+\cdots+n=\frac{n(n+1)}{2}
]

That expression is quadratic in (n), so the complexity is (O(n^2)).

, 5) Logarithmic Loop
Question 5:
What is the time complexity of the following algorithm?

i = 1
while i < n
i = 2i

Answer:
[
O(\log n)
]

Explanation:
Each iteration doubles the value of (i). The number of doublings needed to reach (n) is
approximately (\log_2 n). Therefore, the time complexity is (O(\log n)).




6) Recurrence Relation
Question 6:
Solve the recurrence:

[
T(n)=T(n-1)+5,\quad T(1)=2
]

Answer:
[
T(n)=5n-3
]

Explanation:
Expand the recurrence:

[
T(n)=T(n-1)+5
]
[
T(n-1)=T(n-2)+5
]

Escuela, estudio y materia

Institución
Grado

Información del documento

Subido en
21 de abril de 2026
Número de páginas
27
Escrito en
2025/2026
Tipo
Examen
Contiene
Preguntas y respuestas

Temas

$17.49
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
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
Wiseman NURSING
Seguir Necesitas iniciar sesión para seguir a otros usuarios o asignaturas
Vendido
8057
Miembro desde
4 año
Número de seguidores
3887
Documentos
30011
Última venta
3 horas hace
Premier Academic Solutions

3.9

1630 reseñas

5
798
4
298
3
251
2
92
1
191

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