ACTUAL QUESTIONS AND CORRECT ANSWERS WITH
RATIONALE LATEST UPDATE 2026 ALREADY GRADED A+
This comprehensive study guide provides 300 unique, multiple-choice
questions designed to thoroughly prepare candidates for the WGU D465 Data
Applications Objective Assessment. Covering essential data analysis concepts
including spreadsheet functions, statistical analysis, financial calculations,
data cleaning, text manipulation, lookup functions, and array formulas, each
question includes the correct answer and a detailed rationale explaining the
underlying principle. The questions address VLOOKUP, XLOOKUP,
INDEX-MATCH, SUMIFS, COUNTIFS, FILTER, SORT, UNIQUE, TEXT
functions, date/time calculations, PMT, NPV, IRR, depreciation methods, and
error handling. This resource is ideal for WGU students, data analysts, and
professionals seeking to demonstrate proficiency in data applications and
spreadsheet-based data analysis.
1. A data analyst needs to calculate the average of values in cells B2 through B50.
Which formula should they use?
A) =SUM(B2:B50)
B) =TOTAL(B2:B50)
C) =AVG(B2:B50)
D) =AVERAGE(B2:B50)
Answer: D
Rationale: The AVERAGE function calculates the arithmetic mean of a range of
cells. SUM adds values, TOTAL is not a valid Excel function, and AVG is not the
correct spelling for the average function.
2. Which spreadsheet function returns the number of cells within a range that
match a specified condition?
A) COUNT()
B) COUNTA()
C) COUNTIF()
D) COUNTBLANK()
Answer: C
,Rationale: COUNTIF counts cells that meet a specific criterion (e.g.,
COUNTIF(A1:A10, ">5")). COUNT counts numeric cells, COUNTA counts non-
empty cells, and COUNTBLANK counts empty cells.
3. A data analyst writes the formula =SUMIF(K20:K70, ">=50", L20:L70). What
does this formula return?
A) Sum of all values in K20:K70 that are ≥50
B) Sum of values in L20:L70 where corresponding cells in K20:K70 are ≥50
C) Count of cells in K20:K70 with values ≥50
D) Average of cells L20:L70
Answer: B
Rationale: The SUMIF function sums values in the sum_range (L20:L70) only
when the corresponding cells in the range (K20:K70) meet the specified condition
(≥50).
4. Which function would a data analyst use to return the smallest numeric value in
a cell range?
A) MIN()
B) SMALL()
C) LOWEST()
D) LEAST()
Answer: A
Rationale: The MIN function returns the smallest numeric value in a specified
range of cells. SMALL can return the nth smallest value but requires two
arguments.
5. A data analyst needs to lock a table array in a VLOOKUP formula so the range
does not change when the formula is copied to other cells. What should they use?
A) Relative references
B) Mixed references
C) Absolute references
D) Named ranges only
Answer: C
Rationale: Absolute references (using $ signs, e.g., $A$1:$B$10) lock the cell or
range reference so it does not change when copied to other cells. Relative
references change, mixed references lock only part of the reference.
6. Which spreadsheet function is used to find the position of a specific character
within a text string?
A) FIND()
,B) SEARCH()
C) Both FIND and SEARCH
D) LOCATE()
Answer: C
Rationale: Both FIND and SEARCH return the position of a character within a text
string. FIND is case-sensitive, while SEARCH is not case-sensitive. LOCATE is
not a valid Excel function.
7. A data analyst wants to combine the text in cell A1 and cell B1 with a space
between them. Which formula should they use?
A) =COMBINE(A1, B1)
B) =JOIN(A1, B1)
C) =CONCAT(A1, " ", B1)
D) =MERGE(A1, B1)
Answer: C
Rationale: CONCAT (or CONCATENATE) joins text strings. The formula
=CONCAT(A1, " ", B1) combines the contents of A1 and B1 with a space in
between. COMBINE, JOIN, and MERGE are not valid functions for this purpose.
8. The VLOOKUP function is used to:
A) Look up values vertically in a table
B) Look up values horizontally in a table
C) Sum values in a column
D) Count values in a row
Answer: A
Rationale: VLOOKUP searches for a value in the first column of a table and
returns a value from the same row in a specified column. HLOOKUP is used for
horizontal lookups.
9. Which function would return the current date and time?
A) TODAY()
B) NOW()
C) DATE()
D) TIME()
Answer: B
Rationale: The NOW function returns the current date and time. TODAY returns
only the current date, DATE creates a date from given values, and TIME creates a
time from given values.
, 10. A data analyst wants to count all non-empty cells in the range A1:A50. Which
function should they use?
A) COUNT(A1:A50)
B) COUNTA(A1:A50)
C) COUNTIF(A1:A50, "*")
D) COUNTBLANK(A1:A50)
Answer: B
Rationale: COUNTA counts all non-empty cells in a range, including text,
numbers, and error values. COUNT only counts numeric values.
11. Which function rounds a number down to the nearest integer?
A) ROUND()
B) ROUNDUP()
C) ROUNDDOWN()
D) INT()
Answer: D
Rationale: INT rounds a number down to the nearest integer (toward zero for
positive numbers, away from zero for negative numbers). ROUND rounds to a
specified number of digits, ROUNDUP rounds up, and ROUNDDOWN rounds
down to a specified number of digits but not necessarily to an integer.
12. A data analyst needs to extract the first three characters from the text in cell
A1. Which formula should they use?
A) =LEFT(A1, 3)
B) =RIGHT(A1, 3)
C) =MID(A1, 1, 3)
D) Both A and C
Answer: D
Rationale: Both LEFT(A1,3) and MID(A1,1,3) extract the first three characters
from the text in cell A1. RIGHT extracts characters from the end.
13. Which function is used to convert text to uppercase letters?
A) UPPER()
B) UPPERCASE()
C) CAPITAL()
D) TOUPPER()
Answer: A
Rationale: The UPPER function converts all letters in a text string to uppercase.
UPPERCASE and TOUPPER are not valid functions, and CAPITAL is not
standard.