Question 663 of 1,000
Machine Learning and Deep LearninghardMultiple ChoiceObjective-mapped

Multi-Class Classification Loss Function: Categorical Crossentropy

This AI0-001 practice question tests your understanding of machine learning and deep learning. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Exhibit

Refer to the exhibit.

JSON config:
{
  "layers": [
    {"type": "Dense", "units": 128, "activation": "relu"},
    {"type": "Dense", "units": 64, "activation": "relu"},
    {"type": "Dense", "units": 10, "activation": "softmax"}
  ],
  "optimizer": "adam",
  "loss": "mean_squared_error",
  "metrics": ["accuracy"]
}

The exhibit shows a model configuration for a classification task with 10 classes. What is wrong with this setup?

Exhibit

Refer to the exhibit.

JSON config:
{
  "layers": [
    {"type": "Dense", "units": 128, "activation": "relu"},
    {"type": "Dense", "units": 64, "activation": "relu"},
    {"type": "Dense", "units": 10, "activation": "softmax"}
  ],
  "optimizer": "adam",
  "loss": "mean_squared_error",
  "metrics": ["accuracy"]
}

Quick Answer

The correct choice is categorical crossentropy as the loss function for multi-class classification, not mean squared error. This is because categorical crossentropy directly measures the dissimilarity between the predicted probability distribution from a softmax output layer and the true one-hot encoded labels, penalizing incorrect predictions exponentially more than mean squared error, which treats all errors linearly and is designed for regression tasks. On the CompTIA AI+ AI0-001 exam, this question tests your understanding of loss function selection for neural network architectures, often appearing as a configuration review where a common trap is using a regression loss like MSE for classification. A reliable memory tip is to associate “cross” with “classes” — if your output has more than two categories, crossentropy is the cross you must bear for accurate training.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The loss function should be categorical crossentropy, not mean squared error

In a multi-class classification task with 10 classes, the correct loss function is categorical crossentropy because it measures the dissimilarity between the true probability distribution and the predicted probability distribution. Mean squared error (MSE) is designed for regression tasks and penalizes errors in a way that is not suitable for classification probabilities, leading to poor gradient behavior and slower convergence.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The loss function should be categorical crossentropy, not mean squared error

    Why this is correct

    Correct: MSE is for regression; classification requires crossentropy loss.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The metric should be precision, not accuracy

    Why it's wrong here

    Accuracy is a valid metric for classification.

  • The activation should be sigmoid in hidden layers

    Why it's wrong here

    ReLU is a common choice for hidden layers.

  • The optimizer should be SGD, not Adam

    Why it's wrong here

    Adam is suitable for classification.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Cisco often tests the misconception that MSE can be used as a generic loss function for any task, but in classification, crossentropy is specifically designed to handle probability distributions and one-hot encoding.

Detailed technical explanation

How to think about this question

Categorical crossentropy computes the negative log-likelihood of the true class, which directly aligns with maximizing the probability of correct classification. MSE treats class probabilities as continuous values and assumes Gaussian error distribution, which is invalid for one-hot encoded targets. In practice, using MSE for classification can lead to slower convergence and suboptimal decision boundaries because gradients become very small when predictions are close to 0 or 1.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A practitioner preparing for the AI0-001 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related AI0-001 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free AI0-001 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this AI0-001 question test?

Machine Learning and Deep Learning — This question tests Machine Learning and Deep Learning — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: The loss function should be categorical crossentropy, not mean squared error — In a multi-class classification task with 10 classes, the correct loss function is categorical crossentropy because it measures the dissimilarity between the true probability distribution and the predicted probability distribution. Mean squared error (MSE) is designed for regression tasks and penalizes errors in a way that is not suitable for classification probabilities, leading to poor gradient behavior and slower convergence.

What should I do if I get this AI0-001 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More AI0-001 practice questions

Last reviewed: Jul 4, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This AI0-001 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AI0-001 exam.