AI-102 Exam QuestionsBrowse all questions from this exam

AI-102 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.

Show Answer
Correct Answer:

Discussion

9 comments
Sign in to comment
sl_mslconsulting
Oct 18, 2023

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
Jan 7, 2024

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
Jun 20, 2023

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

M25
Sep 3, 2023

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
Nov 6, 2023

correct. thanks for your contribution

85e4c91
Feb 23, 2024

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

Murtuza
Mar 31, 2024

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

PeteColag
Jun 24, 2024

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
Mar 31, 2024

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.

NagaoShingo
Jun 6, 2024

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

mon2002
Jun 13, 2024

Two projection groups Be projected to azure blog storage

krzkrzkra
Jul 14, 2024

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