Exam AI-102 All QuestionsBrowse all questions from this exam
Question 195

HOTSPOT

-

You create a knowledge store for Azure Cognitive Search by using the following JSON.

Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic.

NOTE: Each correct selection is worth one point.

    Correct Answer:

Discussion
sl_mslconsulting

The answer for the second question is wrong. There will be no projection for normalized images. You have to remember object projection is for JSON document not binary raw images. Both projections don’t have the files specified.

dimsok

I agree with you, for images you should define a file projection but there is none (https://learn.microsoft.com/en-us/azure/search/knowledge-store-projections-examples#define-a-table-projection)

Tin_Tin

The answer seems correct. https://learn.microsoft.com/en-us/azure/search/knowledge-store-projections-examples#define-a-table-projection

M25

Correct! https://learn.microsoft.com/en-us/azure/search/knowledge-store-projection-example-long#relationships-among-table-object-and-file-projections If you don't want the data related, define the projections in different projection groups. For example, the following snippet will result in the tables being related, but without relationships between the tables and the object (OCR text) projections. https://learn.microsoft.com/en-us/azure/search/knowledge-store-projections-examples#define-a-file-projection File projections are always binary, normalized images, where normalization refers to potential resizing and rotation for use in skillset execution. File projections, similar to object projections, are created as blobs in Azure Storage, and contain binary data (as opposed to JSON).

rdemontis

correct. thanks for your contribution

PeteColag

This is somewhat of a trick question. Its important to note that the term "normalized image" does not refer to the raw binary file of the image, but rather to the transformed version which includes only the text (referred to in the JSON as "/document/normalized_images/*/text"). Hence, the normalized image is in fact being stored to the BLOB storage as an object.

Murtuza

The code you provided contains two projection groups. Here they are: The first projection group includes the following tables: unrelatedDocument unrelatedKeyPhrases The second projection group includes the following objects: unrelatedocrtext unrelatedocrlayout

85e4c91

The Answer is Correct, the normalized Images are defined in the object projection and object projections are stored in blob storage

krzkrzkra

1. two projection groups 2. be projected to Azure Blob storage

mon2002

Two projection groups Be projected to azure blog storage

NagaoShingo

1. two projection groups 2. be projected to Azure Blob storage

Murtuza

The correct answer is one projection group. In the provided JSON, there is one projections array, which means there is one projection group. The correct answer is be projected to Azure Blob storage. The storageContainer fields “unrelatedocrtext” and “unrelatedocrlayout” indicate that the normalized images (both text and layout text) are being stored in Azure Blob storage containers. Azure Table storage is not used in this scenario.