H13-311_V3.5 · Question #226
When the universal text recognition service is successfully called, the returned text recognition result is stored in which of the following fields?
The correct answer is B. result. Option B (result) is correct because the universal text recognition service API follows a standard response envelope pattern where the recognition output is nested inside a result field - this is the documented return structure for this service. Option A (text) is a plausible…
Question
When the universal text recognition service is successfully called, the returned text recognition result is stored in which of the following fields?
Options
- Atext
- Bresult
- Ccontent
- Dwords
How the community answered
(40 responses)- A3% (1)
- B83% (33)
- C10% (4)
- D5% (2)
Explanation
Option B (result) is correct because the universal text recognition service API follows a standard response envelope pattern where the recognition output is nested inside a result field - this is the documented return structure for this service.
Option A (text) is a plausible distractor since text recognition naturally involves text, but text is typically a sub-field within the result object, not the top-level container. Option C (content) is commonly used in other contexts (like message bodies or file contents) but is not the field name this API uses for recognition output. Option D (words) may appear as a nested property inside the result (e.g., a list of recognized word segments), but it is not the top-level field holding the full recognition result.
Memory tip: Think of result as the "wrapper" - any API response that processes your input and gives back processed data wraps it in result, while specific sub-values like words or text live inside it.
Topics
Community Discussion
No community discussion yet for this question.