Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

← Implement knowledge mining and information extraction solutions practice sets

AI-102 Implement knowledge mining and information extraction solutions • Complete Question Bank

AI-102 Implement knowledge mining and information extraction solutions — All Questions With Answers

Complete AI-102 Implement knowledge mining and information extraction solutions question bank — all 0 questions with answers and detailed explanations.

168
Questions
Free
No signup
Certifications/AI-102/Practice Test/Implement knowledge mining and information extraction solutions/All Questions
Question 1mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a knowledge mining solution to extract insights from a large set of PDF contracts. The solution must identify parties, dates, and monetary amounts. Which Azure AI service should you use as the primary extraction engine?

Question 2easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your team has built a knowledge mining pipeline using Azure AI Search and Document Intelligence. After ingestion, you notice that some documents are not appearing in search results. What is the most likely cause?

Question 3hardmultiple choice
Read the full NAT/PAT explanation →

You are designing a knowledge mining solution that must extract entities from scanned handwritten forms. The forms contain signatures and checkboxes. Which combination of Azure AI services should you recommend?

Question 4mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your knowledge mining solution uses Azure AI Search. Users complain that search results are not relevant. You have enabled semantic search but results still lack context. What should you do to improve relevance?

Question 5easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You need to extract key-value pairs from a large set of invoices. The invoices have a consistent layout but vary in format (PDF, TIFF). Which Document Intelligence model should you use?

Question 6hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your knowledge mining solution ingests documents from multiple tenants. Each tenant's data must be isolated and searchable only by that tenant. You have a single Azure AI Search service. How should you implement multi-tenancy?

Question 7easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are using Azure AI Search to index customer support tickets. You want to automatically extract the customer's sentiment and key phrases from each ticket. Which Azure AI service should you integrate as a skillset?

Question 8mediummultiple choice
Read the full NAT/PAT explanation →

Your organization has a knowledge base of technical manuals in PDF format. You need to enable users to ask natural language questions and get answers from the manuals. Which solution should you build?

Question 9hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your knowledge mining pipeline uses Azure AI Search with a custom skillset that calls an Azure Function. The function sometimes times out for large documents. What is the best way to handle this?

Question 10mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO actions should you take to ensure that an Azure AI Search indexer can access data from an Azure Storage account that contains sensitive data?

Question 11hardmulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which THREE components are required to build a knowledge mining solution using Azure AI Search that extracts and enriches content from PDF files?

Question 12easymulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO Azure AI services can be used to extract text from images as part of a knowledge mining pipeline?

Question 13hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are reviewing a skillset definition for an Azure AI Search indexer. The indexer is configured to index 1000 PDF documents. After running the indexer, you notice that only 500 documents have sentiment scores. What is the most likely cause?

Exhibit

Refer to the exhibit.

{
  "name": "my-skillset",
  "description": "Custom skillset",
  "skills": [
    {
      "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
      "context": "/document",
      "textSplitMode": "pages",
      "maximumPageLength": 5000,
      "defaultLanguageCode": "en",
      "inputs": [
        { "name": "text", "source": "/document/content" }
      ],
      "outputs": [
        { "name": "textItems", "targetName": "pages" }
      ]
    },
    {
      "@odata.type": "#Microsoft.Skills.Text.V3.SentimentSkill",
      "context": "/document/pages/*",
      "defaultLanguageCode": "en",
      "inputs": [
        { "name": "text", "source": "/document/pages/*" }
      ],
      "outputs": [
        { "name": "sentiment", "targetName": "sentiment" }
      ]
    }
  ]
}
Question 14mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are reviewing an index definition created with PowerShell. The index is used for a knowledge mining solution that extracts people and organizations from documents. Users report that when they type partial names in the search bar, the suggester does not return suggestions. What is the most likely reason?

Exhibit

Refer to the exhibit.

$index = @{
    name = "knowledge-index"
    fields = @(
        @{name = "id"; type = "Edm.String"; key = $true},
        @{name = "content"; type = "Edm.String"; searchable = $true},
        @{name = "people"; type = "Collection(Edm.String)"; searchable = $true; filterable = $true},
        @{name = "organizations"; type = "Collection(Edm.String)"; searchable = $true; filterable = $true}
    )
    suggesters = @(
        @{name = "sg"; searchMode = "analyzingInfixMatching"; sourceFields = @("content")}
    )
}
Question 15easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You review the configuration for an Azure AI Search indexer. The indexer runs successfully but no documents are indexed. What is the most likely cause?

Exhibit

Refer to the exhibit.

{
  "dataSource": {
    "name": "blob-datasource",
    "type": "azureblob",
    "credentials": {
      "connectionString": "DefaultEndpointsProtocol=https;AccountName=myaccount;AccountKey=...;EndpointSuffix=core.windows.net"
    },
    "container": {
      "name": "documents"
    }
  },
  "index": {
    "name": "docs-index",
    "fields": [
      {"name":"id","type":"Edm.String","key":true,"searchable":false},
      {"name":"content","type":"Edm.String","searchable":true},
      {"name":"metadata_storage_name","type":"Edm.String","searchable":true}
    ]
  },
  "indexer": {
    "name": "docs-indexer",
    "dataSourceName": "blob-datasource",
    "targetIndexName": "docs-index",
    "parameters": {
      "batchSize": 10,
      "maxFailedItems": -1
    }
  }
}
Question 16mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your organization has a large set of PDF invoices stored in Azure Blob Storage. You need to extract line-item details (product names, quantities, prices) and store them in Azure SQL Database for downstream reporting. The invoices have varied layouts. Which Azure AI service should you use?

Question 17hardmultiple choice
Read the full NAT/PAT explanation →

You are designing a solution to extract customer names and addresses from scanned handwritten forms. The forms are stored as images in Azure Blob Storage. The extraction must achieve high accuracy with minimal manual review. Which combination of Azure AI services should you use?

Question 18easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building an Azure AI Search solution to index a collection of technical manuals. Users need to find documents by searching for specific terms and also have the ability to filter by document category. Which feature should you configure in the index to support filtering?

Question 19mediummultiple choice
Read the full NAT/PAT explanation →

Your organization has a large corpus of legal documents stored in Azure Blob Storage. You need to build a solution that allows lawyers to ask natural language questions and get answers directly from the documents, without moving data out of Azure. Which service should you use?

Question 20hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are using Azure AI Search to index a set of PDF documents. The index includes a 'content' field with the extracted text. Users report that when they search for 'budget forecast', documents containing only 'budget' or 'forecast' are ranked lower than expected. Which configuration change would improve the ranking for multi-word queries?

Question 21easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a knowledge mining solution using Azure AI Search. You need to ensure that sensitive information such as credit card numbers is automatically removed from the indexed content. Which built-in skill should you add to your skillset?

Question 22mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your organization is using Azure AI Document Intelligence to process expense reports. The reports are submitted as images and need to be classified into categories (e.g., travel, office supplies) before extraction. Which feature of Document Intelligence should you use?

Question 23hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building an Azure AI Search solution that indexes data from multiple sources, including SQL Database and Azure Blob Storage. The index must be updated within 15 minutes of any source change. Which approach should you use to achieve near-real-time indexing?

Question 24easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are using Azure AI Language Service to extract key phrases from customer reviews. You notice that for reviews containing the word 'not good', the service sometimes extracts 'good' as a key phrase. What is the most likely reason?

Question 25mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a knowledge mining solution using Azure AI Search with AI enrichment. Which TWO built-in skills can be used to extract information from images embedded in documents?

Question 26hardmulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Your organization is using Azure AI Document Intelligence to process a mix of invoices and purchase orders. You need to ensure that documents are correctly classified before extraction. Which THREE steps should you take?

Question 27easymulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO features of Azure AI Search allow you to improve the relevance of search results for users?

Question 28mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a solution to extract customer feedback from PDF documents stored in Azure Blob Storage. The solution must extract key phrases and sentiment scores, but you cannot use any pre-built models from Azure AI Language. What should you use?

Question 29easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You need to implement a solution that searches through a collection of scanned invoices and extracts invoice numbers, dates, and total amounts. The solution must run on a schedule without manual intervention. Which Azure service should you use?

Question 30hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your company has a large collection of legal contracts in PDF format stored in Azure Blob Storage. You need to extract key clauses, parties, and effective dates using a custom model in Azure AI Document Intelligence. The model must be retrained monthly as new contract templates are added. What is the recommended approach to handle model versioning and retraining?

Question 31mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution that ingests documents from SharePoint Online and makes them searchable using Azure AI Search. The solution must extract text from images and perform optical character recognition (OCR) on embedded images within PDFs. Which built-in skill should you include in the skillset?

Question 32easymultiple choice
Read the full NAT/PAT explanation →

Your organization has a large repository of technical manuals in PDF format. You need to build a chatbot that can answer questions about the content of these manuals. Which combination of Azure services should you use?

Question 33hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are implementing a knowledge mining solution using Azure AI Search. The data source is a large Azure Cosmos DB collection containing customer support tickets. Each ticket has fields: ticket_id, description, category, and resolution. You need to ensure that the search index can support fuzzy search and autocomplete suggestions. What should you configure in the index definition?

Question 34mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You need to extract personally identifiable information (PII) from a set of text documents before indexing them in Azure AI Search. The PII must be redacted. Which Azure AI service and configuration should you use?

Question 35mediummultiple choice
Read the full NAT/PAT explanation →

Your team is building a knowledge mining solution for research papers. You need to automatically categorize papers into topics and extract author names, publication dates, and references. The solution must use custom models because the papers are domain-specific. Which combination of Azure services should you use?

Question 36easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a solution to extract structured data from a large number of handwritten forms. The forms are scanned and stored as images. Which Azure AI feature should you use?

Question 37mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO actions should you take to optimize the performance of an Azure AI Search solution that indexes large volumes of data?

Question 38hardmulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which THREE components are essential when building a custom skill for Azure AI Search?

Question 39easymulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO Azure AI services can be used to extract text from images as part of an Azure AI Search enrichment pipeline?

Question 40hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are reviewing the skillset definition for an Azure AI Search indexer. The SplitSkill splits the document content into pages of 5000 characters. The SentimentSkill is set to run on each page. However, the sentiment analysis is not producing correct results. What is the most likely cause?

Exhibit

Refer to the exhibit.

{
  "skills": [
    {
      "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
      "name": "#1",
      "context": "/document",
      "inputs": [
        {"name": "text", "source": "/document/content"},
        {"name": "textSplitMode", "source": "pages"},
        {"name": "maximumPageLength", "source": 5000}
      ],
      "outputs": [
        {"name": "textItems", "targetName": "pages"}
      ]
    },
    {
      "@odata.type": "#Microsoft.Skills.Text.V3.SentimentSkill",
      "name": "#2",
      "context": "/document/pages/*",
      "inputs": [
        {"name": "text", "source": "/document/pages/*"}
      ],
      "outputs": [
        {"name": "sentiment", "targetName": "sentimentLabel"},
        {"name": "confidenceScores", "targetName": "confidenceScores"}
      ]
    }
  ]
}
Question 41mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You have an Azure AI Search indexer that is configured to index PDF files from Azure Blob Storage. The indexer is not extracting any text from the PDFs, and no errors are reported. You review the indexer definition as shown. What is the most likely cause?

Exhibit

Refer to the exhibit.

{
  "dataSourceName": "myblob",
  "skillsetName": "mypdfskillset",
  "targetIndexName": "myindex",
  "parameters": {
    "configuration": {
      "dataToExtract": "contentAndMetadata",
      "parsingMode": "json"
    }
  },
  "fieldMappings": [
    {"sourceFieldName": "metadata_storage_path", "targetFieldName": "path"},
    {"sourceFieldName": "content", "targetFieldName": "content"}
  ]
}
Question 42hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You executed the Azure CLI command shown to create an indexer. However, the indexer fails to run. The error indicates that the data source connection string is invalid. You have verified that the connection string is correct. What is the most likely issue?

Network Topology
az search indexer createname myindexerresource-group myrgservice-name mysearchdata-source-name myblobskillset-name mypdfskillsettarget-index-name myindexparameters '{"configuration": {"dataToExtract": "contentAndMetadata"query '{"status": "success"}'Refer to the exhibit.
Question 43mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution for a large legal firm. The solution must extract key clauses, parties, and dates from thousands of PDF contracts. You need to minimize manual labeling effort while achieving high extraction accuracy. Which Azure AI service should you use?

Question 44hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your company uses Azure AI Search for an internal knowledge base. Users complain that searches for 'annual report 2023' return irrelevant results. You analyze the search index and find that the content field contains large blocks of text from PDFs. You need to improve relevance without re-indexing all documents. Which approach should you take?

Question 45easymultiple choice
Read the full NAT/PAT explanation →

You are building a knowledge mining solution to extract insights from customer support call transcripts. The solution must identify the customer's issue, the resolution provided, and the sentiment of the call. Which combination of Azure AI services should you use?

Question 46hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your team is implementing a knowledge mining solution using Azure AI Search with custom skills. The custom skill, deployed as an Azure Function, calls a third-party API to enrich documents. You notice that some documents fail enrichment with HTTP 429 (too many requests) errors. You need to ensure all documents are enriched without losing data. What should you do?

Question 47mediummultiple choice
Read the full NAT/PAT explanation →

You are building a knowledge mining solution that indexes technical manuals in multiple languages. The solution must enable users to search in their native language and retrieve results in the same language. Which approach should you use?

Question 48easymultiple choice
Read the full NAT/PAT explanation →

You need to extract product codes (e.g., 'PRD-12345') from scanned invoices using Azure AI Document Intelligence. The product codes always follow a pattern of three uppercase letters, a hyphen, and five digits. Which approach should you use?

Question 49mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution for a medical research organization. The solution must extract relationships between drugs, diseases, and genes from scientific articles. The data will be stored in a knowledge graph for querying. Which Azure AI service should you use for the extraction?

Question 50hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your Azure AI Search indexer is failing to index a large number of PDFs from Azure Blob Storage. The error log shows 'Document extraction timeout' for many documents. You need to resolve this issue without losing data. What should you do?

Question 51easymultiple choice
Read the full NAT/PAT explanation →

You are building a knowledge mining solution to extract key information from handwritten forms. The forms contain checkboxes, signatures, and handwritten text. Which Azure AI service should you use?

Question 52mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO actions should you perform to ensure that an Azure AI Search indexer can successfully enrich documents using a custom skill that calls an external API?

Question 53hardmulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which THREE factors should you consider when designing a knowledge mining solution that uses Azure AI Search and custom skills to extract insights from large volumes of documents?

Question 54mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO configurations are required to enable Azure AI Search to index content from an Azure SQL database?

Question 55easymulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which THREE Azure AI services can be used to extract text from images?

Question 56hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You deploy the ARM template shown in the exhibit to create an Azure AI Search indexer. The indexer fails to run, and you see an error that the skillset 'demo-skillset' does not exist. What is the most likely cause?

Exhibit

Refer to the exhibit.
{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "resources": [
    {
      "type": "Microsoft.Search/searchServices/indexers",
      "apiVersion": "2023-11-01",
      "name": "demo-indexer",
      "dependsOn": [
        "[resourceId('Microsoft.Search/searchServices', 'demo-search')]"
      ],
      "properties": {
        "dataSourceName": "demo-datasource",
        "targetIndexName": "demo-index",
        "skillsetName": "demo-skillset",
        "schedule": {
          "interval": "PT1H",
          "startTime": "2024-01-01T00:00:00Z"
        },
        "parameters": {
          "maxFailedItems": 10,
          "maxFailedItemsPerBatch": 5
        },
        "fieldMappings": [
          {
            "sourceFieldName": "metadata_storage_path",
            "targetFieldName": "path"
          }
        ]
      }
    }
  ]
}
Question 57mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You have defined the custom WebApiSkill shown in the exhibit. The skill calls an Azure Function that can process up to 10 documents per second. However, you notice that the skill is failing with 429 errors. What is the most likely cause?

Exhibit

Refer to the exhibit.
{
  "skillset": {
    "name": "demo-skillset",
    "description": "Custom skillset for enrichment",
    "skills": [
      {
        "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
        "name": "custom-skill",
        "description": "Calls external API for entity extraction",
        "uri": "https://myfunctionapp.azurewebsites.net/api/extract",
        "context": "/document",
        "inputs": [
          {
            "name": "text",
            "source": "/document/content"
          }
        ],
        "outputs": [
          {
            "name": "entities",
            "targetName": "extractedEntities"
          }
        ],
        "httpMethod": "POST",
        "timeout": "PT30S",
        "batchSize": 5,
        "degreeOfParallelism": 3
      }
    ]
  }
}
Question 58mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a knowledge mining solution for legal documents using Azure AI Search. The solution must extract entities like dates, organizations, and persons from PDF files and index them. Which built-in skill should you add to the skillset to perform this extraction?

Question 59hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You have an Azure AI Search solution that indexes customer support tickets. The index includes a 'category' field that should be automatically populated using a custom skill that calls an Azure Machine Learning model. However, the skill fails intermittently with HTTP 429 errors. What is the most likely cause and the best fix?

Question 60easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution to extract information from scanned invoices stored as multi-page TIFF images. Which two Azure AI services should you combine to extract text and structure the data?

Question 61mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are implementing a knowledge mining solution using Azure AI Search with a custom skillset. The custom skill is an Azure Function that enriches documents with additional metadata. You need to ensure that the custom skill receives the entire document content as input. How should you configure the skill's context and inputs?

Question 62hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your organization uses Microsoft Purview to catalog data assets. You need to enable knowledge mining on these assets to allow users to search across structured and unstructured data. Which integration should you use to connect Microsoft Purview with Azure AI Search?

Question 63mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are troubleshooting an Azure AI Search indexer that is failing with the error 'No skillset was found with the name 'skillset-name'.' The skillset exists in the same resource group. What is the most likely cause?

Question 64easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You need to extract key-value pairs from scanned forms as part of a knowledge mining solution. Which Azure AI service should you use?

Question 65hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution that ingests content from SharePoint Online. The solution must index documents and also extract custom metadata such as project name and client ID using a custom skill. The custom skill is an Azure Function that calls an external API. The external API has a rate limit of 100 requests per minute. Your indexer processes 1000 documents per hour. How should you configure the indexer to avoid hitting the rate limit?

Question 66mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are using Azure AI Search to build a knowledge base for a customer support portal. The index includes a 'sentiment' field that should be populated using the Sentiment skill. However, the sentiment scores are not being written to the index. The skillset runs successfully. What is the most likely cause?

Question 67hardmulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO configurations are required to enable incremental enrichment in Azure AI Search?

Question 68mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO Azure AI services can be used together to build a knowledge mining solution that extracts text from handwritten notes and indexes them for search?

Question 69easymulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which THREE components are required to build a custom skill for Azure AI Search enrichment?

Question 70mediummultiple choice
Read the full NAT/PAT explanation →

You have the above Azure AI Search skillset. The indexer fails with the error 'The skill 'sentiment-skill' cannot find the input '/document/pages/*' because the path does not exist.' What is the most likely cause?

Exhibit

Refer to the exhibit.
```json
{
  "skills": [
    {
      "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
      "name": "split-skill",
      "context": "/document",
      "inputs": [
        {
          "name": "text",
          "source": "/document/content"
        }
      ],
      "outputs": [
        {
          "name": "pages",
          "targetName": "pages"
        }
      ]
    },
    {
      "@odata.type": "#Microsoft.Skills.Text.V3.SentimentSkill",
      "name": "sentiment-skill",
      "context": "/document/pages/*",
      "inputs": [
        {
          "name": "text",
          "source": "/document/pages/*"
        }
      ],
      "outputs": [
        {
          "name": "sentiment",
          "targetName": "sentiment"
        }
      ]
    }
  ]
}
```
Question 71hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You have the above Azure AI Search indexer definition. The indexer runs successfully but the 'content' field in the index is empty for all documents. What is the likely cause?

Exhibit

Refer to the exhibit.
```json
{
  "indexers": [
    {
      "name": "my-indexer",
      "dataSourceName": "my-datasource",
      "targetIndexName": "my-index",
      "skillsetName": "my-skillset",
      "schedule": {
        "interval": "PT1H"
      },
      "parameters": {
        "batchSize": 100,
        "maxFailedItems": 10,
        "maxFailedItemsPerBatch": 5,
        "configuration": {
          "dataToExtract": "contentAndMetadata",
          "imageAction": "generateNormalizedImages"
        }
      },
      "fieldMappings": [
        {
          "sourceFieldName": "metadata_storage_path",
          "targetFieldName": "path"
        }
      ],
      "outputFieldMappings": [
        {
          "sourceFieldName": "/document/content",
          "targetFieldName": "content"
        }
      ]
    }
  ]
}
```
Question 72easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You have the above data source definition for Azure AI Search. You want to index only PDF files from the 'documents' container. How should you modify the data source?

Exhibit

Refer to the exhibit.
```json
{
  "dataSource": {
    "name": "my-blob-datasource",
    "type": "azureblob",
    "credentials": {
      "connectionString": "DefaultEndpointsProtocol=https;AccountName=mystorage;AccountKey=...;EndpointSuffix=core.windows.net"
    },
    "container": {
      "name": "documents",
      "query": ""
    }
  }
}
```
Question 73mediummultiple choice
Read the full NAT/PAT explanation →

Your organization is using Azure AI Search to index a large collection of PDF documents stored in Azure Blob Storage. The index currently returns search results, but users complain that the results are not relevant when they search using natural language phrases. You need to improve the relevance of search results without rewriting the application. What should you do?

Question 74easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your company deploys an Azure AI Document Intelligence solution to extract data from invoices. During testing, you notice that some fields are not being extracted correctly, especially for invoices from a specific vendor with a non-standard layout. You need to improve extraction accuracy for this vendor's invoices. What should you do?

Question 75hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing an enterprise search solution using Azure AI Search. The solution must index data from multiple sources: SQL Database, SharePoint Online, and custom REST APIs. The search index must support faceted navigation and filtering by metadata such as department and document type. You also need to ensure that updates to source data are reflected in the index within 5 minutes. Which approach should you use?

Question 76mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a knowledge mining solution using Azure AI Search and Azure AI Language. The solution must extract key phrases, entities, and sentiment from customer feedback documents. After processing, the enriched content should be stored in the search index for full-text search. You need to configure the enrichment pipeline. Which two Azure AI services should you integrate?

Question 77easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your company uses Azure AI Search to power a customer support portal. The search index includes product documentation and known issues. Recently, the portal's search performance has degraded, and users report slow response times. You need to identify the cause of the performance issue. What should you check first?

Question 78hardmultiple choice
Read the full NAT/PAT explanation →

You are implementing a knowledge mining solution for a legal firm. The solution must ingest large volumes of legal documents (PDFs and Word files) stored in Azure Blob Storage. You need to extract text, recognize named entities (e.g., parties, judges, case numbers), and index the content for full-text search. The solution should also support redaction of sensitive information before indexing. Which combination of Azure AI services should you use?

Question 79mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your organization uses Microsoft Syntex to automatically classify and extract metadata from documents stored in SharePoint. You need to extend this capability to also extract entities such as invoice numbers and dates from PDF invoices that are uploaded to SharePoint. What should you do?

Question 80easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a chatbot using Microsoft Copilot Studio that needs to answer questions based on content from a set of technical manuals stored as PDFs. The content must be indexed and made available to the chatbot. You need to configure the knowledge source for the chatbot. What should you do?

Question 81hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing an Azure AI Search solution that indexes customer support tickets from a SQL database and also from a custom CRM system via a custom API. The index must support scoring profiles that boost tickets from VIP customers. The VIP status is stored in the CRM system. You need to ensure that the boost factor is applied correctly. What should you do?

Question 82mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

You are deploying a knowledge mining solution using Azure AI Search and Azure AI Document Intelligence. The solution must extract text from scanned documents, identify named entities, and index the content. You need to configure the skillset. Which TWO built-in skills should you include in the skillset?

Question 83hardmulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

You are using Microsoft Purview to create a knowledge map of your organization's data assets. The solution must automatically scan and classify sensitive data in Azure Blob Storage. You need to configure the scanning and classification. Which THREE actions should you perform?

Question 84easymulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building an Azure AI Search index that includes content from a SQL database and an Azure Cosmos DB collection. The index must support autocomplete suggestions as users type. Which TWO configurations are required to enable autocomplete?

Question 85mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You have an Azure AI Search skillset defined as shown in the exhibit. When you run the indexer, the enrichment pipeline produces outputs but no entities are extracted. The source documents are in English and contain clear organization and person names. What is the most likely cause?

Exhibit

Refer to the exhibit.

{
  "name": "my-skillset",
  "skills": [
    {
      "@odata.type": "#Microsoft.Skills.Text.V3.EntityRecognitionSkill",
      "categories": [ "Organization", "Person", "Location" ],
      "defaultLanguageCode": "en",
      "inputs": [ { "name": "text", "source": "/document/content" } ],
      "outputs": [ { "name": "entities", "targetName": "entities" } ]
    },
    {
      "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
      "defaultLanguageCode": "en",
      "inputs": [ { "name": "text", "source": "/document/content" } ],
      "outputs": [ { "name": "keyPhrases", "targetName": "keyPhrases" } ]
    }
  ]
}
Question 86hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You have an Azure AI Search index defined as shown in the exhibit. Users want to filter search results by author and by a date range, and also see a count of documents per tag. However, the filter on author is not working. What is the most likely reason?

Network Topology
az search index showindex-name support-articlesRefer to the exhibit."name": "support-articles","fields": [
Question 87mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You have configured an Azure AI Search indexer with a Cosmos DB data source as shown in the exhibit. The indexer runs successfully, but you notice that the index is missing some documents that were recently added to Cosmos DB. What is the most likely cause?

Exhibit

Refer to the exhibit.

{
  "$schema": "https://schemas.microsoft.com/azure/cosmosdb/2019-08-01",
  "datasources": [
    {
      "name": "my-cosmosdb",
      "type": "cosmosdb",
      "credentials": { "connectionString": "AccountEndpoint=https://mycosmos.documents.azure.com:443/;AccountKey=...;" },
      "container": { "name": "mycontainer", "query": "SELECT c.id, c.title, c.content FROM c WHERE c._ts > @HighWaterMark ORDER BY c._ts" }
    }
  ]
}
Question 88mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a knowledge mining solution for legal documents stored in Azure Blob Storage. The solution must extract entities, key phrases, and relationships from the documents. Which Azure AI service should you use?

Question 89hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your knowledge mining solution uses Azure AI Search with a custom skill that calls an Azure Function to perform complex data validation. The custom skill returns an error for some documents, but the indexer continues without raising an error. What is the most likely cause?

Question 90easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution for customer support emails. The solution must extract the customer's name, issue category, and sentiment from each email. Which two Azure AI services should you combine?

Question 91hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You have the above skillset in Azure AI Search. The indexer processes a document with 12,000 characters of content. How many entity recognition skill executions occur?

Exhibit

Refer to the exhibit.
{
  "skills": [
    {
      "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
      "name": "split",
      "context": "/document",
      "textSplitMode": "pages",
      "maximumPageLength": 5000,
      "pageOverlapLength": 500,
      "inputs": [
        { "name": "text", "source": "/document/content" }
      ],
      "outputs": [
        { "name": "textItems", "targetName": "pages" }
      ]
    },
    {
      "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
      "name": "entities",
      "context": "/document/pages/*",
      "categories": [ "Person", "Organization" ],
      "inputs": [
        { "name": "text", "source": "/document/pages/*" }
      ],
      "outputs": [
        { "name": "entities", "targetName": "entities" }
      ]
    }
  ]
}
Question 92easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your knowledge mining pipeline uses Azure AI Search to index PDF files. You need to extract text from the PDFs and also recognize embedded tables. Which built-in skill should you use?

Question 93mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO options are valid ways to index content from Azure SQL Database into Azure AI Search? (Select TWO.)

Question 94mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You run the Azure CLI command 'az search indexer list --search-service mysearch --query "[].{name:name, status:status, lastResult:lastResult}"' and get the above output. Your indexer shows 5 warnings. What should you do to investigate the warnings?

Exhibit

Refer to the exhibit.
{
  "value": [
    {
      "name": "myindexer",
      "status": "running",
      "lastResult": {
        "status": "success",
        "errorCount": 0,
        "warningCount": 5
      }
    }
  ]
}
Question 95hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your organization uses Azure AI Search to index customer product reviews. The reviews are in English, Spanish, and French. You need to enable multi-lingual search so that a query in English returns relevant results from all three languages. What should you do?

Question 96easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You need to enrich documents with key phrases and sentiment before indexing into Azure AI Search. Which type of skill should you use?

Question 97hardmulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which THREE conditions must be met for Azure AI Search to use a custom skill? (Select THREE.)

Question 98mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your company has a large repository of scanned invoices in PDF format. You need to extract invoice number, date, total amount, and vendor name from these PDFs. Which Azure AI service should you use?

Question 99hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You have the above indexer configuration. The indexer processes a batch of 10 documents. In that batch, 3 documents fail. What happens?

Exhibit

Refer to the exhibit.
{
    "@odata.context": "https://mysearch.search.windows.net/$metadata#indexers/$entity",
    "name": "blob-indexer",
    "dataSourceName": "blob-datasource",
    "targetIndexName": "myindex",
    "skillsetName": "my-skillset",
    "schedule": {
        "interval": "PT1H",
        "startTime": "2025-01-01T00:00:00Z"
    },
    "parameters": {
        "batchSize": 10,
        "maxFailedItems": 5,
        "maxFailedItemsPerBatch": 2
    },
    "fieldMappings": [],
    "outputFieldMappings": [],
    "status": "running"
}
Question 100easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You plan to use Azure AI Search to index a large number of text documents stored in Azure Blob Storage. The documents are in English. You want to automatically extract key phrases from the content during indexing. What should you add to the skillset?

Question 101mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO Azure AI Search features are used to map skill outputs to search index fields? (Select TWO.)

Question 102mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your knowledge mining solution uses Azure AI Document Intelligence to extract data from purchase orders. The extracted data is then indexed by Azure AI Search. You need to ensure that the search index includes the purchase order number and total amount as searchable fields. What should you do?

Question 103mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a solution to extract key information from scanned invoices. The invoices are in PDF format and contain both printed and handwritten fields. Which Azure AI service should you use?

Question 104hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your team is using Azure AI Search to index a large collection of technical manuals. Users report that searches for 'disk failure' do not return relevant results because the manuals use terms like 'hard drive crash'. Which feature should you implement to improve recall?

Question 105easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You need to extract entities such as dates, locations, and organization names from unstructured text documents. Which Azure AI service should you use?

Question 106mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution for a legal firm. The solution must index contracts and support queries like 'find all contracts where the governing law is New York'. The contracts are stored as PDFs in Azure Blob Storage. Which approach should you use?

Question 107easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are using Azure AI Document Intelligence to extract data from purchase orders. The purchase orders have a table of line items. Which prebuilt model should you use?

Question 108hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your knowledge mining solution uses Azure AI Search with cognitive skills. During testing, you notice that some documents are not being enriched because the skillset execution fails. Which diagnostic step should you take first?

Question 109mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You need to build a chatbot that answers questions based on your company's internal knowledge base. The knowledge base consists of Word documents and PDFs. Which service should you use to create a conversational interface that retrieves answers from these documents?

Question 110hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution that must handle sensitive customer data. The solution must ensure that personally identifiable information (PII) is not returned in search results. What should you do?

Question 111easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are extracting text from scanned documents that are in French. Which capability of Azure AI Document Intelligence should you use?

Question 112mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO services can be used to enrich an Azure AI Search index with knowledge mining skills? (Choose two.)

Question 113hardmulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which THREE actions should you take when designing a custom skill for an Azure AI Search enrichment pipeline? (Choose three.)

Question 114easymulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO capabilities are available in Azure AI Search to improve search relevance? (Choose two.)

Question 115hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Refer to the exhibit. You have this skillset definition for an Azure AI Search enrichment pipeline. You notice that the entity recognition skill is not executing on any document. What is the most likely cause?

Exhibit

{
  "skills": [
    {
      "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
      "name": "#1",
      "context": "/document",
      "inputs": [
        {
          "name": "text",
          "source": "/document/content"
        },
        {
          "name": "languageCode",
          "source": "/document/language"
        }
      ],
      "outputs": [
        {
          "name": "textItems",
          "targetName": "pages"
        }
      ],
      "textSplitMode": "pages",
      "maximumPageLength": 5000
    },
    {
      "@odata.type": "#Microsoft.Skills.Text.V3.EntityRecognitionSkill",
      "name": "#2",
      "context": "/document/pages/*",
      "inputs": [
        {
          "name": "text",
          "source": "/document/pages/*"
        },
        {
          "name": "languageCode",
          "source": "/document/language"
        }
      ],
      "outputs": [
        {
          "name": "entities",
          "targetName": "entities"
        }
      ]
    }
  ]
}
Question 116easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Refer to the exhibit. You have this Azure AI Search indexer configuration. The indexer is failing after processing 6 documents that contain errors. What should you do to ensure the indexer continues processing even if some documents fail?

Exhibit

{
  "indexer": {
    "dataSourceName": "blob-datasource",
    "targetIndexName": "knowledge-index",
    "schedule": {
      "interval": "PT1H"
    },
    "parameters": {
      "batchSize": 10,
      "maxFailedItems": 5,
      "maxFailedItemsPerBatch": 5
    }
  }
}
Question 117mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Refer to the exhibit. You execute a search query on an Azure AI Search index and get these results. The query was 'brown fox'. Why is the first result scored higher than the second?

Exhibit

{
  "searchResults": {
    "value": [
      {
        "@search.score": 2.345,
        "content": "The quick brown fox jumps over the lazy dog.",
        "metadata_storage_path": "https://storage.blob.core.windows.net/documents/doc1.pdf"
      },
      {
        "@search.score": 1.234,
        "content": "A fast brown fox leaps over a sleepy dog.",
        "metadata_storage_path": "https://storage.blob.core.windows.net/documents/doc2.pdf"
      }
    ]
  }
}
Question 118mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a solution to extract key information from invoices using Azure AI Document Intelligence. The invoices contain fields such as invoice number, date, total amount, and line items. However, the model is not correctly extracting the line items. Which prebuilt model should you use?

Question 119hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your company uses Azure Cognitive Search to index millions of documents. Users report that search results include irrelevant documents. You need to improve search relevance by boosting documents that contain the search term in the title field. Which scoring profile configuration should you use?

Question 120easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are using Azure AI Language to perform entity recognition on customer feedback. You need to identify the sentiment expressed towards specific entities. Which feature should you use?

Question 121hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing an Azure Cognitive Search solution for a legal document repository. The solution must support search across multiple languages, including English and Spanish. You need to ensure that searches return documents regardless of the language of the query. Which approach should you use?

Question 122mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are using Azure AI Document Intelligence to process a large batch of PDF forms. The forms have varying layouts and handwriting. You need to extract text and key-value pairs. Which custom model type should you train?

Question 123easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your company has a large set of PDF documents stored in Azure Blob Storage. You need to index these documents in Azure Cognitive Search so that users can search the text content. What is the first step you should take?

Question 124hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are implementing a knowledge mining solution using Azure Cognitive Search with built-in AI enrichment. The pipeline must extract named entities and key phrases from documents. The enrichment pipeline should be triggered only for documents that are larger than 1 MB. Which approach should you use?

Question 125mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are using Azure AI Language to extract information from medical research papers. You need to identify terms like 'dosage', 'side effects', and 'contraindications' specific to the medical domain. Which capability should you use?

Question 126easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a question answering solution using Azure AI Language. You have a set of frequently asked questions (FAQs) in a Word document. You need to import the FAQs into a project. Which approach should you use?

Question 127mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing an Azure Cognitive Search solution that indexes customer support tickets. The index must include a field for 'sentiment' that is populated from an AI enrichment pipeline. Which TWO actions are required to achieve this?

Question 128hardmulti select
Read the full NAT/PAT explanation →

You are using Azure AI Document Intelligence to extract data from scanned contracts. The contracts contain tables and handwritten signatures. Which TWO features should you enable?

Question 129mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a knowledge mining solution that uses Azure Cognitive Search and Azure AI Language. The solution must extract key phrases and detect the language of documents. Which THREE components are required?

Question 130hardmultiple choice
Read the full NAT/PAT explanation →

You are a data scientist for Contoso Pharmaceuticals. The company has thousands of research documents in PDF format stored in Azure Blob Storage. You need to build an Azure Cognitive Search solution that enables researchers to search for documents based on chemical compound names, disease mentions, and experimental results. The solution must extract these entities using a custom AI model built in Azure AI Language. Additionally, the solution must support semantic search for natural language queries. The search index must be updated daily with new documents. You have an existing Azure AI Language custom entity extraction model that recognizes chemical compounds and diseases. The model is deployed as an endpoint. You need to configure the enrichment pipeline. What should you do?

Question 131mediummultiple choice
Read the full NAT/PAT explanation →

You are building a knowledge mining solution for a legal firm that needs to extract key clauses from thousands of scanned contract PDFs. The solution must identify parties, effective dates, and termination conditions. Which Azure AI service should you use as the primary component?

Question 132easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

A company uses Azure AI Search to index customer support tickets. They need to automatically extract key phrases from each ticket to improve search relevance. Which built-in skill should they add to the skillset?

Question 133hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution using Azure AI Search. The solution must process large volumes of PDFs daily. You need to minimize the cost of cognitive skills execution while ensuring the pipeline can handle transient failures. Which approach should you recommend?

Question 134mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your team is building a custom ChatGPT-like copilot using Microsoft Foundry that answers questions based on internal HR policies stored in SharePoint. The solution must retrieve only the most relevant documents to minimize token usage. Which Azure AI Search feature should you configure?

Question 135hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are implementing a knowledge mining solution with Azure AI Search that ingests data from Azure Blob Storage. The pipeline includes a custom skill that calls an external API for specialized entity extraction. The custom skill sometimes returns HTTP 429 (Too Many Requests). How should you handle this to ensure reliable indexing?

Question 136easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

A healthcare organization needs to mine clinical notes to find mentions of diseases, medications, and treatment procedures. The data is stored in Azure SQL Database. Which Azure AI service should they integrate with Azure AI Search to extract these entities?

Question 137mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are troubleshooting an Azure AI Search indexer that fails to index a PDF file stored in Azure Blob Storage. The error message indicates that the document is encrypted. What is the most likely cause and solution?

Question 138hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your organization is building a knowledge base from technical manuals stored in multiple formats (PDF, Word, HTML). You need to extract text and images from these documents and create a searchable index. The solution must handle tables and preserve their structure. Which approach should you use?

Question 139mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Refer to the exhibit. You are configuring an Azure AI Search skillset. The skillset includes an EntityRecognitionSkill and a KeyPhraseExtractionSkill. After running the indexer, you notice that the 'organizations' field is empty in the index. What is the most likely cause?

Exhibit

{
  "skillset": {
    "cognitiveServices": "/subscriptions/.../providers/Microsoft.CognitiveServices/accounts/my-cog-svc",
    "skills": [
      {
        "@odata.type": "#Microsoft.Skills.Text.V3.EntityRecognitionSkill",
        "categories": ["Person", "Organization", "Location"]
      },
      {
        "@odata.type": "#Microsoft.Skills.Text.V3.KeyPhraseExtractionSkill"
      }
    ]
  }
}
Question 140mediummulti select
Read the full NAT/PAT explanation →

Which TWO Azure AI Search features should you enable to improve the relevance of search results for a knowledge mining solution that supports natural language queries?

Question 141hardmulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which THREE considerations are important when designing a custom skill for Azure AI Search that calls an external API for specialized data extraction?

Question 142easymulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO built-in cognitive skills in Azure AI Search can be used to extract entities from text?

Question 143hardmultiple choice
Read the full NAT/PAT explanation →

You are a data engineer at a multinational corporation. The company has thousands of research reports in PDF format stored in Azure Blob Storage. The reports contain text, tables, charts, and handwritten annotations. Your team needs to build a knowledge mining solution using Azure AI Search that allows researchers to query the reports using natural language. The solution must extract text, table structures, and handwritten annotations. Additionally, the solution must handle multiple languages (English, Spanish, and French) and ensure that the index is updated daily as new reports are added. The search should prioritize the most recent reports. You have an Azure AI Search service in the S2 tier. Which combination of actions should you take to meet these requirements?

Question 144mediummultiple choice
Read the full NAT/PAT explanation →

You are a solution architect at a legal firm. The firm wants to build a copilot using Microsoft Foundry that answers questions about case law documents stored in Azure Blob Storage. The copilot should use the Retrieval Augmented Generation (RAG) pattern with Azure AI Search as the vector store. The documents are in PDF format and include complex tables and footnotes. The solution must ensure that the answers are grounded in the documents and that the copilot can handle follow-up questions. You need to design the ingestion pipeline. Which approach should you take?

Question 145mediummultiple choice
Read the full NAT/PAT explanation →

You are a developer at an e-commerce company. The company wants to build a product search feature that allows customers to search for products using natural language phrases like "red running shoes under $100". The product catalog is stored in Azure Cosmos DB and includes product descriptions, prices, and categories. The solution must use Azure AI Search and must extract entities from product descriptions to enable filtering (e.g., color, size, brand). The search must also support fuzzy matching for misspelled queries. You need to design the indexing pipeline. Which actions should you take?

Question 146mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are building a knowledge mining solution for a legal firm to extract clauses from contracts. The contracts are stored as PDFs in Azure Blob Storage. You need to design the solution to minimize cost while ensuring high accuracy for clause extraction. Which approach should you use?

Question 147easymultiple choice
Read the full NAT/PAT explanation →

A company uses Azure AI Search to index customer support transcripts. They want to enable users to find relevant answers by asking natural language questions. Which feature should they enable in the search service?

Question 148hardmultiple choice
Read the full NAT/PAT explanation →

You are deploying an Azure AI Search solution that indexes medical research papers. The papers contain sensitive patient data that must be de-identified before indexing. You need to use Azure AI Services to detect and redact personal information. Which combination of skills should you include in a skillset?

Question 149mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution for a manufacturing company that needs to extract information from equipment maintenance manuals. The manuals are in multiple languages (English, French, German). You need to ensure that the extracted content is searchable in English only. Which approach should you use?

Question 150hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

An organization uses Azure AI Search to power an internal knowledge base. They notice that search results are returning irrelevant documents. The index includes a 'content' field with full text and a 'tags' field with metadata. Users often search for specific terms that appear in the 'tags' field. How should you configure the search index to improve relevance?

Question 151mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

You are developing a knowledge mining solution that extracts insights from customer feedback. Which TWO Azure AI services can be used to analyze the sentiment of the feedback and categorize it into topics?

Question 152hardmulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution for a large enterprise that uses Azure AI Search to index millions of documents. The solution must support high-availability and automatic failover. Which THREE actions should you take to meet these requirements?

Question 153easymulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

Which TWO Azure AI services are most appropriate for extracting text from images and recognizing handwritten text?

Question 154hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Refer to the exhibit. You are using Azure AI Search with a skillset that splits documents into pages and then analyzes sentiment per page. You notice that the sentiment analysis is returning unexpected results, such as positive sentiment for negative content. What is the most likely cause?

Exhibit

{
  "skillset": {
    "skills": [
      {
        "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
        "name": "split",
        "context": "/document",
        "textSplitMode": "pages",
        "maximumPageLength": 5000,
        "pageOverlapLength": 500,
        "defaultLanguageCode": "en",
        "inputs": [
          { "name": "text", "source": "/document/content" }
        ],
        "outputs": [
          { "name": "textItems", "targetName": "pages" }
        ]
      },
      {
        "@odata.type": "#Microsoft.Skills.Text.V3.SentimentSkill",
        "name": "sentiment",
        "context": "/document/pages/*",
        "defaultLanguageCode": "en",
        "inputs": [
          { "name": "text", "source": "/document/pages/*" }
        ],
        "outputs": [
          { "name": "sentiment", "targetName": "sentimentLabel" },
          { "name": "confidenceScores", "targetName": "confidenceScores" }
        ]
      }
    ]
  }
}
Question 155mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are a data scientist at a healthcare research organization. You have been tasked with building a knowledge mining solution to extract key information from thousands of medical journal articles stored as PDFs in an Azure Blob Storage container. The articles are in English and contain tables, figures, and structured text. Your organization uses Microsoft Purview for data governance. You need to design a solution that uses Azure AI Search and Azure AI Services to extract and index the following: article title, authors, publication date, abstract, and key findings (as key phrases). The solution must also detect any mentions of drugs and dosages. The extracted information must be indexed and searchable via a custom web application. Which approach should you take?

Question 156hardmultiple choice
Read the full NAT/PAT explanation →

You are a solution architect at a financial services company. You need to implement a knowledge mining solution that extracts information from annual reports (PDF) of publicly traded companies. The reports contain financial tables, executive summaries, and legal disclaimers. The solution must: (1) extract the company name, fiscal year, revenue, net income, and CEO name; (2) redact any personally identifiable information (PII) like email addresses and phone numbers before indexing; (3) index the extracted data in Azure AI Search; (4) allow users to query using natural language (e.g., 'Which company had the highest revenue in 2023?'). The reports are uploaded to an Azure Blob Storage container. You have access to Azure AI Services and Azure OpenAI. Which combination of services and configurations should you use?

Question 157mediummultiple choice
Read the full NAT/PAT explanation →

You are a developer at a legal firm. The firm has a repository of court case documents stored as PDFs in Azure Blob Storage. You need to build a knowledge mining solution that enables lawyers to search for cases by parties involved, judge name, case number, date, and key legal topics. The documents are in English and contain both typed and handwritten text. The solution must extract the aforementioned metadata and also identify citations to other cases (e.g., 'Smith v. Jones'). You plan to use Azure AI Search with cognitive skills. Which combination of skills should you include in your skillset?

Question 158hardmultiple choice
Read the full NAT/PAT explanation →

You are a machine learning engineer at a retail company. The company wants to build a product knowledge base by extracting information from product manuals, specifications sheets, and customer reviews. The data sources include PDFs, Word documents, and plain text files stored in Azure Blob Storage. The solution must: (1) extract product name, model number, price, and key features; (2) analyze customer reviews to extract sentiment and common issues; (3) enable natural language queries like 'Which products have the best reviews under $100?'; (4) handle documents in English and Spanish. You need to design a solution using Azure AI Search and Azure AI Services. Which approach meets all requirements with the least development effort?

Question 159easymultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are a data engineer at a university. The university wants to digitize its historical student records (paper forms) to make them searchable. The records are scanned as images (JPEG) and stored in Azure Blob Storage. Each form contains handwritten fields: student name, ID number, date of birth, and degree. You need to extract these fields and index them in Azure AI Search. The solution must use Azure AI Services and minimize manual labeling effort. Which approach should you take?

Question 160mediummultiple choice
Read the full NAT/PAT explanation →

You are a solution architect at a news agency. The agency publishes thousands of articles daily. You need to build a knowledge mining solution that enables journalists to search for articles by topic, sentiment, key people, and locations mentioned. The articles are stored as HTML files in Azure Blob Storage. The solution must also provide a summary for each article. You plan to use Azure AI Search with cognitive skills and Azure OpenAI. Which combination of skills and features should you include to meet all requirements with the best performance and accuracy?

Question 161easymulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

A company is building a knowledge mining solution using Azure AI Search. They need to extract entities from a large set of PDF documents stored in Azure Blob Storage. The solution must use a built-in AI skill to identify people, organizations, and locations. Which TWO actions should be taken? (Choose two.)

Question 162mediummulti select
Read the full Implement knowledge mining and information extraction solutions explanation →

A healthcare organization is implementing a knowledge mining solution to extract information from medical records. They need to ensure that the solution can identify medical conditions, medications, and treatment procedures using a pre-built model. The solution must be deployed in Microsoft Foundry. Which THREE components should be included? (Choose three.)

Question 163hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are developing a knowledge mining solution for a legal firm that needs to process thousands of legal contracts stored as PDFs in Azure Blob Storage. The solution must extract clauses, parties, and dates using a custom model. You are using Microsoft Foundry with Azure AI Search and Azure AI Document Intelligence. The custom model must be trained on labeled contract data. After training, you deploy the model and integrate it into the AI Search enrichment pipeline. The pipeline must also perform OCR for scanned contracts. You have configured the following:

- A custom classification model in Document Intelligence for document types. - A custom extraction model in Document Intelligence for clauses, parties, and dates. - An Azure AI Search index with fields: clause, party, date. - A skillset with a Document Intelligence skill pointing to the custom extraction model.

During testing, the pipeline runs successfully for digital PDFs but fails for scanned PDFs. The error indicates that OCR is not being applied. What should you do to fix the issue?

Question 164hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your company is building a knowledge base for customer support using Azure AI Search. You have a large dataset of customer emails stored in Azure Blob Storage. The solution must extract key phrases, detect sentiment, and identify customer intents (e.g., complaint, inquiry, feedback). You plan to use built-in AI skills for key phrase extraction and sentiment detection. For intent identification, you need a custom solution because the intents are specific to your business. You have trained a custom Language Understanding (LUIS) model and published it. How should you integrate the LUIS model into the Azure AI Search enrichment pipeline to extract intents?

Question 165mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

You are designing a knowledge mining solution for a publishing company that needs to extract metadata from thousands of book manuscripts in various formats (PDF, Word, EPUB). The solution must identify authors, publication dates, and chapter titles. You are using Microsoft Foundry with Azure AI Search and Azure AI Document Intelligence. The manuscripts are stored in Azure Blob Storage. You need to ensure that the solution can handle all file formats. You have configured a skillset with a Document Intelligence skill for the PDFs and Word documents. However, the EPUB files are not being processed. What should you do to include EPUB files in the enrichment pipeline?

Question 166mediummultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your organization is implementing a knowledge mining solution for a research institute that needs to extract chemical compound names and reactions from scientific articles in PDF format. The solution must use a custom model because the scientific terminology is not covered by built-in skills. You have trained a custom model using Azure AI Language's custom entity recognition (NER) and deployed it as a REST endpoint. You are using Azure AI Search with a skillset. How should you integrate the custom NER model into the enrichment pipeline?

Question 167mediummultiple choice
Study the full Python automation breakdown →

You are building a knowledge mining solution for a financial services company that needs to extract key financial terms (e.g., revenue, EBITDA, net income) from annual reports in PDF format. The solution must use a custom skill that runs a Python script to perform the extraction. The Python script is deployed as an Azure Function. You have added the custom skill to the skillset and tested it with a small set of documents. However, when processing the full dataset, the custom skill fails with time-out errors. The Azure Function has a default timeout of 230 seconds. What should you do to resolve the issue without changing the extraction logic?

Question 168hardmultiple choice
Read the full Implement knowledge mining and information extraction solutions explanation →

Your company is developing a knowledge mining solution for a legal firm that needs to extract information from scanned legal documents. The documents contain handwritten notes in addition to printed text. You need to extract both printed and handwritten text. You are using Azure AI Document Intelligence with the Read OCR model. The solution must be integrated into Azure AI Search. During testing, the printed text is extracted correctly, but handwritten text is often missing or incorrect. What should you do to improve the extraction of handwritten text?

Practice tests

Scored 10-question sessions with instant feedback and explanations.

AI-102 Practice Test 1 — 10 Questions→AI-102 Practice Test 2 — 10 Questions→AI-102 Practice Test 3 — 10 Questions→AI-102 Practice Test 4 — 10 Questions→AI-102 Practice Test 5 — 10 Questions→AI-102 Practice Exam 1 — 20 Questions→AI-102 Practice Exam 2 — 20 Questions→AI-102 Practice Exam 3 — 20 Questions→AI-102 Practice Exam 4 — 20 Questions→Free AI-102 Practice Test 1 — 30 Questions→Free AI-102 Practice Test 2 — 30 Questions→Free AI-102 Practice Test 3 — 30 Questions→AI-102 Practice Questions 1 — 50 Questions→AI-102 Practice Questions 2 — 50 Questions→AI-102 Exam Simulation 1 — 100 Questions→

Practice by domain

Each domain maps to a weighted exam section. Focus on the domain where you are weakest.

Implement an agentic solutionImplement computer vision solutionsImplement knowledge mining and information extraction solutionsImplement image and video processing solutionsImplement natural language processing solutionsImplement generative AI solutionsImplement agentic AI solutionsImplement knowledge mining and document intelligence solutionsPlan and manage an Azure AI solutionImplement content moderation solutions

Practice by scenario

Filter questions by type — troubleshooting, exhibit, drag-and-drop, PBQ, ACLs, OSPF, and more.

Browse scenarios→

Continue studying

All Implement knowledge mining and information extraction solutions setsAll Implement knowledge mining and information extraction solutions questionsAI-102 Practice Hub