Google News
logo
Postman - Quiz(MCQ)
A)
Group of libraries
B)
Group of test scripts
C)
Group of saved requests
D)
Group of saved environment variables

Correct Answer :   Group of saved requests

A)
Postman Platform
B)
Postman API 101 Workshop
C)
API technicalities
D)
Postman API development Series

Correct Answer :   Postman API 101 Workshop

A)
Android Platform Integration
B)
Application Public Interface
C)
Application Postman Interface
D)
Application Programming Interface

Correct Answer :   Application Programming Interface

A)
True
B)
False
C)
Can not say
D)
--

Correct Answer :   True

A)
Only for Mac
B)
Only for Linux (32-bit / 64-bit)
C)
Only for Windows (32-bit / 64-bit)
D)
For Mac, Windows (32-bit / 64-bit), and Linux (32-bit / 64-bit)

Correct Answer :   For Mac, Windows (32-bit / 64-bit), and Linux (32-bit / 64-bit)


Explanation : Postman is available as a native desktop app for Mac, Windows (32-bit / 64-bit), and Linux (32-bit / 64-bit) operating systems.

A)
There is no concept called workspace in Postman.
B)
Postman workspaces do not allow for team collaboration.
C)
Postman workspaces allow to organize and collaborate on API projects.
D)
Postman workspaces are a group of requests and scripts.

Correct Answer :   Postman workspaces allow to organize and collaborate on API projects.

A)
True
B)
False
C)
Can not Say
D)
--

Correct Answer :   True

A)
Public API
B)
Public, Private, and Hardware
C)
Public and Private API
D)
Public and Personalised API

Correct Answer :   Public, Private, and Hardware

A)
An API
B)
A group of saved request
C)
A runner
D)
A folder

Correct Answer :   A group of saved request

A)
History is a folder.
B)
History is a collection.
C)
Every request you send in Postman appears under the History tab of the sidebar.
D)
None of the above

Correct Answer :   Every request you send in Postman appears under the History tab of the sidebar.


Explanation : Every request you send in Postman appears under the History tab of the sidebar. It is similar to browser history. You can always clear history in Postman.

A)
Create, Retrieve, Use and Delete
B)
Create, Receive, Update and Delete
C)
Create, Retrieve, Update and Deprecate
D)
Create, Retrieve, Update and Delete

Correct Answer :   Create, Retrieve, Update and Delete

A)
True
B)
False
C)
Can not say
D)
--

Correct Answer :   True

A)
We can create multiple workspaces in Postman.
B)
To create additional workspaces, you need to be signed into a Postman account.
C)
Postman workspaces allow you to organize and collaborate on API projects with your team and personal use.
D)
All of the above

Correct Answer :   All of the above

A)
API sharing
B)
Collaboration
C)
API Documentation
D)
All of the above

Correct Answer :   All of the above

A)
NewLine
B)
Newman
C)
PostLine
D)
PostCommand

Correct Answer :   Newman

16 .
Consider that you get the following response to the request:
{
  "timestamp": 1331856000000,
  "status": 401
}
A)
var jsonResponse = JSON.parse(responseBody); 
postman.setGlobalVariable("ts", jsonResponse.timestamp);
B)
var jsonResponse = JSON.parse(responseBody); 
postman.setEnvironmentVariable("ts", timestamp.jsonResponse);
C)
var jsonResponse = JSON.parse(responseBody); 
postman.setEnvironmentVariable("ts", jsonResponse.timestamp);
D)
var jsonResponse = JSON.parse(responseBody); 
postman.setEnvironmentVariable("ts", timestamp.jsonResponse);

Correct Answer :  

var jsonResponse = JSON.parse(responseBody); 
postman.setEnvironmentVariable("ts", jsonResponse.timestamp);

A)
True
B)
False
C)
Can not say
D)
--

Correct Answer :   True

A)
responseHeaders.message
B)
pm.headers.message;
C)
pm.getResponseHeader.message
D)
pm.getResponseHeader(message);

Correct Answer :   responseHeaders.message

A)
Adds random integer between 0 and 10
B)
Adds random integer between 0 and 1000
C)
Adds random integer between 0 and 10000
D)
Invalid syntax

Correct Answer :   Adds random integer between 0 and 1000

A)
{{var_name}}
B)
EnvironmentVariable.var_name
C)
environment["var_name"]
D)
pm.setEnvironmentVariable("var_name")

Correct Answer :   environment["var_name"]

A)
Java
B)
Python
C)
Nodejs
D)
All of the above and much more

Correct Answer :   All of the above and much more

A)
It is not possible to read and write cookies using the app.
B)
Chrome application for modifying cookies by itself.
C)
We can use the Postman Interceptor extension for reading and writing cookies.
D)
Both (B) and (C)

Correct Answer :   Both (B) and (C)

A)
data.var_name
B)
data['var_name']
C)
Both (A) and (B)
D)
Variables cannot be accessed from file in the scripts.

Correct Answer :   Both (A) and (B)

A)
Folder variable
B)
Global variable
C)
Collection variable
D)
Environment variable

Correct Answer :   Folder variable


Explanation :

There are five types of variables in Postman :

* Global
* Collection
* Environment
* Data
* Local

A)
True
B)
False
C)
Can not say
D)
--

Correct Answer :   True

A)
True
B)
False
C)
Can not say
D)
--

Correct Answer :   False


Explanation : Global variables are available throughout the workspace. It can be used for any environment.