93% found this document useful (15 votes)
65K views4 pages

Microsoft Teams Developer 91

The document contains questions about developing apps and bots for Microsoft Teams. It discusses topics like: - Setting attributes in a manifest file, like canUpdateConfiguration, to control app settings and behaviors - Tools for building bots like Qnamaker.ai and the Bot Framework Emulator - Commands for developing with TypeScript/Node.js like npm install and yo teams - Methods from the Microsoft Teams JavaScript SDK like getContext and setValidityState
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
93% found this document useful (15 votes)
65K views4 pages

Microsoft Teams Developer 91

The document contains questions about developing apps and bots for Microsoft Teams. It discusses topics like: - Setting attributes in a manifest file, like canUpdateConfiguration, to control app settings and behaviors - Tools for building bots like Qnamaker.ai and the Bot Framework Emulator - Commands for developing with TypeScript/Node.js like npm install and yo teams - Methods from the Microsoft Teams JavaScript SDK like getContext and setValidityState
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

################################################################################

################################################################################
########

For a custom App uploaded to Microsoft Teams, if an organization wants to


disallow users from updating the settings of the custom tab, which attribute
name must be set to false in the manifest file?
CanUpdateConfiguration

Which service is used when building a no-code Question and Answers Bot for
Microsoft Teams?
qnamaker.ai

When a user converses with a Bot in Microsoft Teams, the Bot must display a list
of menu items which the user can select. Select the attribute name in manifest
file where menu items are added for the user to select.
commandLists

For a message extension in Microsoft Teams, which attribute is set to true in


the manifest file if a search command is to be executed as soon as a user
selects the command in the UI?

m
Which of the following is an extension type for a Microsoft Teams App package?

er as
zip

co
eH w
################################################################################
################################################################################

o.
######## rs e
ou urc
While creating a Microsoft Teams custom app using TypeScript and Node.js, which
command should a developer run to install the Microsoft Teams Javascript Client
SDK package?
o

npm install --save @microsoft/teams-js


aC s
v i y re

Which command should a developer using TypeScript and Node.js run to create a
Microsoft Teams custom App?
yo teams

From which of the following interfaces can a user access a Microsoft Teams
ed d

client?
ar stu

all

Which of the following statements related to support for the Oauth Card in
Microsoft Teams is incorrect?
Card will work free with Microsoft Teams.
sh is

Which of the following event type is not a valid conversation update event for a
Th

Microsoft Teams Bot?


channelUpdated

What type of payload is messaged through a connector or incoming web hook in


Microsoft Teams?
Office 365 connector card

Which tool will you install to debug a Bot using inspection middleware?
Bot Framework Emulator

Which of the following method should be called by using Microsoft Teams


Javascript SDK to deep link from a custom tab to a channel, message, another
tab, or an open scheduling dialog?
microsoftTeams.executeDeepLink(/deepLink/);

This study source was downloaded by 100000796924902 from CourseHero.com on 06-27-2021 16:52:15 GMT -05:00

https://www.coursehero.com/file/86050056/Microsoft-Teams-Developer-91txt/
To allow a user to upload a custom App in Microsoft Teams, which feature should
the Office 365 administration team enable?
Teams Extension

Which command should a developer using TypeScript and Node.js run to load a
Microsoft Teams custom App?
gulp ngrok-serve

Which of the following method in the Microsoft Teams Javascript SDK is invoked
to set the configuration value in the settings page?
microsoftTeams.settings.setSettings()

Select the attribute name in the manifest file where the list of domains from
which a custom tab in Microsoft Teams can display pages is specified.
validDomainsList

Which of the following is not a valid card type in Microsoft Teams?


Image Card

Which method signature in the Microsoft Team Javascript Library is used to get
the context in a custom tab?
microsoftTeams.getContext(function(context) { /* ... */ })

m
er as
Which of the following is the extension type for the manifest file in the

co
Microsoft Teams App package?

eH w
json

o.
Which of the following is the correct signature to authenticate using the
rs e
Microsoft Teams Javascript library from a custom tab?
ou urc
microsoftTeams.authentication.authenticate({
url: window.location.origin + "/tab-auth/simple-start",
width: 600,
height: 535,
o

successCallback: function (result) {


aC s

getUserProfile(result.accessToken);
v i y re

},
failureCallback: function (reason) {
handleAuthError(reason);
}
});
ed d
ar stu

Which are the configuration fields required to authenticate a Bot with the Bot
Framework in Microsoft Teams?
Microsoft App ID and Password
sh is

Which of the following method signature is used if a Microsoft Teams Bot has to
find all the members in a group chat?
Th

var mbrs = await connector.GetMemberAsync(message.Conversation.Id);

Select the URL where you will register a Microsoft Teams Bot if you do not wish
to register it in Azure.
https://dev.botframework.com/bots/new

If a developer has to debug a Microsoft Teams Bot locally in Microsoft Teams,


which tool is installed on the developer's machine?
ngrok

Which of the following component in Microsoft Teams does not support Adaptive
Cards, currently?
Team Connectors

Which attribute is set to true in the manifest file if the Microsoft Teams Bot
can send and receive files from a user?

This study source was downloaded by 100000796924902 from CourseHero.com on 06-27-2021 16:52:15 GMT -05:00

https://www.coursehero.com/file/86050056/Microsoft-Teams-Developer-91txt/
supportsFiles

In which portal is a connector registered so that it can be distributed in


Microsoft Teams?
Connector Registration Portal

If you are building a Microsoft Teams Bot using Visual Studio, which Nuget
package will you install?
Microsoft.Bot.Connector.Team

Which of the following property in the App manifest schema is used to specify
the Bot ID in Microsoft Teams?
APP ID

Which of the following is not a valid primary element of an adaptive card?


Card Element

While responding to a Microsoft Team Bot built using .NET, which object
property's class name is used to check if the response is a message or a
conversation?
activity

m
On the settings page of a custom tab, to prevent a user from saving the settings

er as
till the required criteria is satisfied, which method is invoked from the

co
Microsoft Teams JavaScript SDK?

eH w
microsoftTeams.settings.setValidityState(false)

o.
Which of the following is not a valid distribution method for the Microsoft
rs e
Teams App?
ou urc
Upload App in the Office 365 admin center.

Which attribute is set to true in the manifest file if the Microsoft Teams Bot
cannot respond to user messages?
o

isNotificationOnly
aC s
v i y re

For a message extension in Microsoft Teams, which attribute is set to true in


the manifest file if a search command is to be executed as soon as a user
selects the command in the UI?
initialRun
ed d

Select the scope that static tabs in Microsoft Teams are allowed.
ar stu

personal
groupchat - wrong

Which command should a developer run to install the yeoman generator for
Microsoft Teams?
sh is

npm install generator-teams --global


Th

Which of the following is not a valid action type supported by Microsoft Teams
for an adaptive card?
Action.Submit

To display a page, which method should a custom web App hosted in Microsoft
Teams call?
microsoftTeams.initialize()

Which of the following is not a valid TextFomat for creating a custom message in
.NET using the Activity class?
json

Which of the following method is called when creating proactive messages for
Microsoft Teams Bot? If not, the app receives a 401: Unauthorized response.
MicrosoftAppCredentials.TrustServiceUrl

This study source was downloaded by 100000796924902 from CourseHero.com on 06-27-2021 16:52:15 GMT -05:00

https://www.coursehero.com/file/86050056/Microsoft-Teams-Developer-91txt/
Which of the following is not a valid extensibility point in a Microsoft Teams
client?
Connectors and WebHook - wrong

Which of the following method signature is used if a Microsoft Teams Bot has to
reply to a message by a user?

################################################################################
################################################################################
########

m
er as
co
eH w
o.
rs e
ou urc
o
aC s
v i y re
ed d
ar stu
sh is
Th

This study source was downloaded by 100000796924902 from CourseHero.com on 06-27-2021 16:52:15 GMT -05:00

https://www.coursehero.com/file/86050056/Microsoft-Teams-Developer-91txt/
Powered by TCPDF (www.tcpdf.org)

You might also like