- Which of the following best describes integration testing?
View Answer
Correct answer: A — Testing combined modules together
- System testing focuses on:
View Answer
Correct answer: A — Entire application as a whole
- Which tool is commonly used for API testing?
View Answer
Correct answer: A — Postman
- REST Assured is a library for testing:
View Answer
Correct answer: A — REST APIs in Java
- Which of the following is NOT part of integration testing?
View Answer
Correct answer: D — Unit isolation
- System testing validates:
View Answer
Correct answer: A — Functional and non-functional requirements
- Which of the following is true about API testing?
View Answer
Correct answer: A — It validates request and response formats
- Postman supports automation using:
View Answer
Correct answer: A — Collections and Newman
- REST Assured supports validation using:
View Answer
Correct answer: A — Hamcrest matchers
- Which of the following is true about system testing?
View Answer
Correct answer: A — It validates the complete integrated system
- What will be printed?
1 import io.restassured.RestAssured; 2 import static io.restassured.RestAssured.*; 3 public class EduinqAPITest { 4 public static void main(String[] args) { 5 RestAssured.baseURI = "https://api.eduinq.com"; 6 System.out.println("Eduinq API Test"); 7 } 8 } View Answer
Correct answer: A — Eduinq API Test
- Postman supports scripting using:
View Answer
Correct answer: A — JavaScript
- Integration testing ensures:
View Answer
Correct answer: A — Modules work together correctly
- System testing includes:
View Answer
Correct answer: A — Functional, performance, security tests
- REST Assured supports HTTP methods like:
View Answer
Correct answer: A — GET, POST, PUT, DELETE
- Postman collections are used to:
View Answer
Correct answer: A — Group API requests
- Integration testing can be performed using:
View Answer
Correct answer: A — JUnit with mocks
- System testing is usually performed by:
View Answer
Correct answer: A — Independent QA team
- Postman environment variables are used for:
View Answer
Correct answer: A — Parameterizing requests
- REST Assured integrates with:
View Answer
Correct answer: A — JUnit and TestNG
- Which of the following is true about integration testing approaches?
View Answer
Correct answer: A — Big Bang, Top-Down, Bottom-Up
- System testing validates:
View Answer
Correct answer: A — End-to-end scenarios
- Postman supports running tests in CI/CD using:
View Answer
Correct answer: A — Newman CLI
- REST Assured supports authentication using:
View Answer
Correct answer: A — Basic, OAuth, Bearer tokens
- Integration testing helps to detect:
View Answer
Correct answer: A — Interface defects
- System testing is performed after:
View Answer
Correct answer: A — Integration testing
- Postman supports test scripts written in:
View Answer
Correct answer: A — JavaScript
- REST Assured supports response validation using:
View Answer
Correct answer: A — JSONPath and XMLPath
- Integration testing ensures:
View Answer
Correct answer: A — Data flows correctly between modules
- System testing validates:
View Answer
Correct answer: A — Both functional and non-functional requirements
- What will be printed?
1 pm.test("Eduinq API Test", function () { 2 pm.response.to.have.status(200); 3 console.log("Eduinq Integration Test"); 4 }); View Answer
Correct answer: A — Eduinq Integration Test
- Postman supports exporting collections in:
View Answer
Correct answer: A — JSON format
- REST Assured supports validating response time using:
View Answer
Correct answer: A — response.time()
- Integration testing is important because:
View Answer
Correct answer: A — It detects issues in module interactions
- System testing includes:
View Answer
Correct answer: A — Usability testing
- Postman supports data-driven testing using:
View Answer
Correct answer: A — CSV and JSON files
- REST Assured supports validating headers using:
View Answer
Correct answer: A — response.header()
- Integration testing can be automated using:
View Answer
Correct answer: A — CI/CD pipelines
- System testing validates:
View Answer
Correct answer: A — Complete system functionality
- Postman supports monitoring APIs using:
View Answer
Correct answer: A — Monitors feature
- REST Assured supports validating status codes using:
View Answer
Correct answer: A — response.getStatusCode()
- Integration testing is performed to:
View Answer
Correct answer: A — Validate module interactions
- System testing ensures:
View Answer
Correct answer: A — The system meets specified requirements
- Integration testing is performed to validate:
View Answer
Correct answer: A — Interfaces between modules
- System testing includes validation of:
View Answer
Correct answer: A — Functional, performance, and security aspects
- Postman monitors are used for:
View Answer
Correct answer: A — Scheduled API checks
- REST Assured supports validating JSON responses using:
View Answer
Correct answer: A — JSONPath
- Integration testing helps identify:
View Answer
Correct answer: A — Issues in data flow between modules
- System testing is considered:
View Answer
Correct answer: A — Black-box testing
- Which of the following best describes integration and system testing together?
View Answer
Correct answer: A — Integration testing validates module interactions, system testing validates the complete system