Which character is commonly used as a "Delimiter" in prompts to clearly separate instructions from user data?
check_circle
Correct AnswerC
Clear delimiters help the model distinguish between what it should do and what it should process.
Question 232
You are configuring a Private Endpoint for Azure OpenAI. Which Private DNS Zone name is required for proper resolution?
check_circle
Correct AnswerC
Each service has a specific DNS zone; for OpenAI, it is privatelink.openai.azure.com.
Question 233
To prevent "Man-in-the-Middle" attacks, which protocol does Azure OpenAI use for all API communications?
check_circle
Correct AnswerB
Encrypting data in transit via TLS is a mandatory security requirement for all Azure AI services.
Question 234
How does GPT-4o handle "Non-verbal" cues like a user's tone of voice or background noise in an audio stream?
check_circle
Correct AnswerC
Because it is natively multimodal, GPT-4o can "hear" intonation, laughter, or background sounds that text-only models miss.
Question 235
You are hitting the "Maximum Document Size" limit during indexing. What is the most likely cause?
check_circle
Correct AnswerD
Extracting images as part of the document content can significantly increase the JSON size of a single search document.
Question 236
A manufacturing firm wants an agent to help technicians fix machines. Technicians work in noisy environments and use tablets. What is the best interface?
check_circle
Correct AnswerA
Combining speech for hands-free use and vision to "see" the machine parts provides the most practical utility for field workers.
Question 237
You want to prevent "Prompt Injection" where a user tries to overwrite the System Instructions. Which technique is most effective?
check_circle
Correct AnswerD
Delimiting user input with tags helps the model recognize where the "data" ends and the "instructions" begin.
Question 238
Which Azure CLI command is used to check the "Resource Provider" status if you cannot create an OpenAI resource?
check_circle
Correct AnswerC
The Microsoft.CognitiveServices provider must be registered in your subscription before you can deploy AI services.
Question 239
You are using GPT-4o to analyze a complex spreadsheet image. The model is struggling to read the small numbers. What should you do?
check_circle
Correct AnswerB
Setting the detail parameter to high in the vision request forces the model to look at high-resolution crops of the image.
Question 240
You need to choose between "Fine-tuning" and "RAG" for a company's internal HR bot. The HR policies change every week. Which should you choose?
check_circle
Correct AnswerD
RAG is superior for data that changes frequently, as you only need to update the search index, not retrain a model.