> For the complete documentation index, see [llms.txt](https://api-docs.speechace.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-docs.speechace.com/features/spontaneous-activities/task-achievement-scoring/answer-question.md).

# Answer Question

{% hint style="info" %}
Use [Score Task/Task Achievement](/api-reference/score-task-task-achievement.md) to assess if a question was answered correctly.
{% endhint %}

In the "**Answer Question**" task type, the user is expected to provide a concise 1-2 word response to a short question. In this case, the developer can present a boolean result—either right or wrong—since the task score for this type will be binary, resulting in either one (correct) or zero (incorrect) score.

To illustrate how to score a user's response when asked to answer a short question, consider the following example:

**Question Prompt:** “What is the capital of France?”

**User Response:**\
“Paris.”

***

If the user utters a relevant response as below, the developers can create a detailed report that provides the user a positive score as below. Note that the Task Achievement score is full, whereas the overall score is based on fluency, pronunciation and other language skills as well.

<figure><img src="/files/HCRfpkck6Wh4EEs8DQQ9" alt=""><figcaption></figcaption></figure>

If the user utters an ***irrelevant*** response as below, the API will give <mark style="color:red;">**zero**</mark> task score but the language scores will be non-zero and can be presented to the user as follows:

<figure><img src="/files/X9ZJu4rsN76X0oPdRmES" alt=""><figcaption></figcaption></figure>

Such functionality can be built by utilizing the [Score Task/Task Achievement](/api-reference/score-task-task-achievement.md) function of the Speechace API.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://api-docs.speechace.com/features/spontaneous-activities/task-achievement-scoring/answer-question.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
