0
0
Postmantesting~20 mins

Collection runner results in Postman - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Collection Runner Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
query_result
intermediate
2:00remaining
What is the total number of requests run in this collection?
Given a collection runner result summary, determine the total number of requests executed.
Postman
SELECT COUNT(*) AS total_requests FROM collection_runner_results;
A20
B10
C15
D25
Attempts:
2 left
💡 Hint
Look for the total count of requests executed in the results table.
📝 Syntax
intermediate
2:00remaining
Identify the syntax error in this query to fetch failed requests
Find the syntax error in the following SQL query that tries to select all failed requests from collection runner results.
Postman
SELECT * FROM collection_runner_results WHERE status = 'failed';
ANo syntax error
BIncorrect table name
CMissing quotes around 'failed'
DMissing semicolon at the end
Attempts:
2 left
💡 Hint
Check if the query follows standard SQL syntax.
optimization
advanced
2:00remaining
Optimize this query to get average response time per request name
Given this query, choose the optimized version that efficiently calculates average response time grouped by request name.
Postman
SELECT request_name, AVG(response_time) FROM collection_runner_results GROUP BY request_name;
ASELECT request_name, AVG(response_time) FROM collection_runner_results GROUP BY request_name;
BSELECT request_name, SUM(response_time)/COUNT(*) FROM collection_runner_results GROUP BY request_name;
CSELECT request_name, MAX(response_time) FROM collection_runner_results GROUP BY request_name;
DSELECT request_name, AVG(response_time) FROM collection_runner_results;
Attempts:
2 left
💡 Hint
Use built-in aggregate functions with proper grouping.
🧠 Conceptual
advanced
2:00remaining
What does the 'iterations' field represent in collection runner results?
In the context of Postman collection runner results, what does the 'iterations' field represent?
ANumber of environments used
BNumber of requests in the collection
CNumber of failed requests
DNumber of times the entire collection was run
Attempts:
2 left
💡 Hint
Think about how many times the whole set of requests is executed.
🔧 Debug
expert
2:00remaining
Why does this query return zero rows when filtering by status 'passed'?
Given the query: SELECT * FROM collection_runner_results WHERE status = 'passed'; but it returns zero rows, what is the most likely cause?
Postman
SELECT * FROM collection_runner_results WHERE status = 'passed';
AThe table is empty
BThe status values are stored in uppercase like 'PASSED'
CThe column name is misspelled
DThe query syntax is invalid
Attempts:
2 left
💡 Hint
Check the exact stored values and case sensitivity.