Concept:MS Excel named ranges cannot contain spaces.
Explanation:In MS Excel, every formula starts with the equals sign
=.
The
SUM function adds the numeric values inside the referenced range.
A range name such as
examscore or
exam_score is valid
because Excel allows letters, numbers, and underscores in names.
However, Excel does not allow a space inside a range name or a formula reference.
Option D uses
exam score, which contains a space between
exam and
score.
Excel treats this space as invalid syntax.
Hence, the formula
=SUM(exam score)/8 will not be executed.
Options A, B, and C do not contain spaces in their range names, so they are valid.
Answer:D.
=SUM(exam score)/8