Practice Free 300-835 Exam Online Questions
DRAG DROP
Drag and drop the code snippets from the bottom onto the blanks in the code to create a Cisco Webex Meetings meeting using the API. Not all options are used.

Explanation:
Bearer is the correct token type in the Authorization header.
title is the proper key for setting the meeting’s subject.
POST is the HTTP method for creating a meeting.
meetings is the correct API resource endpoint for scheduling meetings via Webex REST API.
An existing user (identified by userId) needs to be allowed to host Webex meetings.
Which API call is used to assign the new license?
- A . PUT /license/{userId}
- B . POST /people/{userId}
- C . PUT /people/{userId}
- D . POST /license/{userId}
Refer to the exhibit.

The code includes the beginning of a short Python script that is constructed to notify the guard in case of an intruder alert.
Which code snippet completes the script?
A)

B)

C)

D)

- A . Option A
- B . Option B
- C . Option C
- D . Option D
What are two guiding principles of a REST API? (Choose two.)
- A . stateless
- B . variable interface
- C . flat system
- D . client-server architecture
- E . responsive
AD
Explanation:
Explanation
Each request from a client to the server must contain all the information needed to understand and process the request. The server does not store
client context between requests.
REST enforces a separation of concerns between the client and server, improving portability and scalability.
What is a benefit of Python virtual environments?
- A . separate package dependencies for each application
- B . shared libraries across all projects
- C . shared workspace for Python applications
- D . dedicated CPU and memory for each application
A
Explanation:
Python virtual environments allow each project to maintain its own isolated set of dependencies, avoiding conflicts between packages required by different applications. This is especially important when applications require different versions of the same library.
DRAG DROP
Drag and drop the correct items from the right to complete this Python script to automate the creation of Cisco Webex Teams spaces and memberships. Not all options are used.


DRAG DROP
Drag and drop the code to create a valid Cisco Meeting Server REST API Python script that creates a CMS coSpace and prints the URI to the console. Not all options are used.


Refer to the exhibit.

Which value of “a” is displayed when the Python code is executed?
- A . 10
- B . 13
- C . 18
- D . 21
Which two statements describe advantages of consuming APIs with asynchronous versus synchronous requests? (Choose two.)
- A . All Cisco APIs are designed to be invoked asynchronously.
- B . APIs respond more quickly when invoked asynchronously.
- C . Asynchronous request coding is less complex.
- D . Application threads do not block waiting for an asynchronous response.
- E . Multiple asynchronous requests can be sent simultaneously.
DRAG DROP
An engineer must automate the creation of daily, 30-minute meetings at 10 AM for the next 50 days.
Drag and drop the code snippets from the bottom onto the boxes in the Python script to create the meetings by using the Webex Meetings API. Not all options are used.

Explanation:
json is imported to handle JSON serialization.
meetings is the correct endpoint for scheduling Webex meetings.
json.dumps converts the Python dictionary to a JSON string for the request body.
INTERVAL=1 sets the recurrence to daily
