wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

LUIS QUIZ

Total questions: 13

Worksheet time: 26mins

Name
Class
Date
1.

When building a Language Understanding application, what is the phrase called that the user might enter?

a)

Sentence

b)

Utterance

c)

Snippet

d)

Intent

2.

What are the four ways you can define entities?

a)

Machine learned, list, blob, AI

b)

List, array, tree, dictionary

c)

List, blob, RegEx, patterns

d)

Machine learned, list, RegEx, patterns

3.

The Language Understanding service can be deployed in which of the following containers? (Select All correct options)

a)

Local Docker host

b)

Azure Container Instance

c)

Azure Docker Container

d)

Azure Kubernetes Service

4.

What are the three prebuilt model elements that the Language Understanding service provides? (Select All the Correct Answers)

a)

Domains

b)

Intents

c)

Entities

d)

Utterances

5.

When using the Language Understanding service to recognize intent, what object is used to submit utterances?

a)

AudioConfig object

b)

SpeechConfig object

c)

Text object

d)

IntentRecognizer Object

6.

Your app must interpret a command such as "turn on the light" or "switch the light on". What do these phrases represent in a language model?

a)

Intents

b)

Utterances

c)

Entities

7.

Your app must interpret a command to book a flight to a specified city, such as "Book a flight to Paris." How should you model the city element of the command?

a)

As an intent

b)

As an utterance

c)

As an entity

8.

Your language model has multiple intents with similar utterances and many possible entity values. How can you minimize the number of utterances required to train the model?

a)

Use Patterns and Pattern.any() entities

b)

Use List entities

c)

Use Regular Expression entities

9.

Your want to ensure that intent predictions from your model are not affected by typo's in the input. Which publishing setting should you configure?

a)

Sentiment analysis

b)

Spelling correction

c)

Speech priming

10.

Your want to return only the most likely intent for your natural language query. Which parameter should you use?

a)

log

b)

show-all-intents

c)

verbose

11.

When using the Speech SDK to recognize intents from a Language Understanding model, how should you configure the SpeechConfig object?

a)

With the location and key of the Language Understanding authoring resource

b)

With the location and key of the Speech resource

c)

With the location and key of the Language Understanding prediction resource.

12.

You use the RecognizeOnceAsync method of an IntentRecognizer. In the IntentRecognitionResult that is returned, which property contains the predicted intent?

a)

ResultId

b)

IntentId

c)

Reason

13.

For the utterance "Hi" what will be the possible intent?

a)

GetTime

b)

GetDay

c)

GetDate

d)

None