Which of the following is NOT a system requirement for installing Postman on a Windows machine?
Think about whether Postman needs internet to install or just to update or sync.
Postman installer can run offline once downloaded. Internet is needed for updates or syncing but not for the initial installation.
In the Postman interface, where would you find the area to write and send HTTP requests?
Think about where you type the URL and choose request methods.
The Request Builder tab in the center pane is where you compose and send HTTP requests.
Given an environment variable baseUrl set to https://api.example.com, what will be the full request URL if you enter {{baseUrl}}/users in the request URL field?
Remember how Postman replaces variables inside double curly braces.
Postman replaces {{baseUrl}} with its value, so the final URL becomes https://api.example.com/users.
Which of the following Postman test scripts correctly asserts that the response status code is 200?
pm.test("Status code is 200", function () { pm.response.to.have.status(200); });
Check the correct Postman assertion syntax for status code.
Option D uses the correct Postman syntax to assert the response status code is 200.
You want to run a Postman collection named MyCollection.json from the command line using Newman. Which command will run the collection and save the report in HTML format to report.html?
Look for the correct Newman reporter flag and export option.
Option B uses the correct Newman syntax: -r html to specify the HTML reporter and --reporter-html-export to save the report.