Software Engineering Fundamentals Flashcards
What is the primary purpose of software testing?
To identify defects and ensure the software meets the required standards.
True or False: Automated testing can completely replace manual testing.
False
What does the acronym ‘QA’ stand for?
Quality Assurance
Fill in the blank: A __________ test checks if the software meets the specified requirements.
functional
What is a test case?
A set of conditions or variables under which a tester determines whether an application or software system is working as it should.
What is regression testing?
Testing existing software applications to make sure that a change or addition hasn’t broken any existing functionality.
Multiple Choice: Which of the following is a type of non-functional testing? A) Unit Testing B) Load Testing C) Integration Testing
B) Load Testing
What is the difference between verification and validation?
Verification ensures the product is built correctly, while validation ensures the right product is built.
True or False: Unit tests are typically written by developers.
True
What is a test suite?
A collection of test cases that are intended to be executed together.
Fill in the blank: Continuous __________ is the practice of automating the integration of code changes from multiple contributors.
Integration
What is a bug?
An error, flaw, or fault in a software program that produces an incorrect or unexpected result.
Multiple Choice: Which testing technique involves testing the software without any knowledge of the internal workings? A) Black Box Testing B) White Box Testing C) Gray Box Testing
A) Black Box Testing
What is a test plan?
A document detailing the scope, approach, resources, and schedule of intended testing activities.
True or False: Smoke testing is a type of regression testing.
False
What is automation testing?
The use of software tools to execute tests automatically, manage test data, and utilize results to improve software quality.
Fill in the blank: __________ testing is performed to determine how a system behaves under a heavy load.
Performance
What does the acronym ‘TDD’ stand for?
Test-Driven Development
Multiple Choice: Which is NOT a benefit of automated testing? A) Increased test coverage B) Faster feedback C) Eliminating human testers
C) Eliminating human testers
What is a test scenario?
A high-level description of a test that outlines what to test and the conditions under which to test.
True or False: A test log records the outcome of test cases and any defects found.
True
What is exploratory testing?
An informal testing approach where testers explore the application without predefined test cases.
Fill in the blank: __________ testing checks the usability and user experience of an application.
User Acceptance
What is a defect lifecycle?
The process that a defect goes through from identification to closure.
Multiple Choice: Which of the following is a common test automation framework? A) Selenium B) SQL C) HTML
A) Selenium
What is the purpose of an assertion in automated tests?
To verify that the expected outcome matches the actual result during testing.
True or False: Smoke testing is the first level of testing conducted on a new build.
True
What is the role of a test engineer?
To design and execute tests, report defects, and ensure software quality.
Fill in the blank: __________ testing is focused on ensuring the integration points between components work as expected.
Integration
What does ‘BDD’ stand for in testing?
Behavior-Driven Development
Multiple Choice: Which of the following is a performance testing tool? A) JMeter B) Git C) Docker
A) JMeter
What is a user story?
A brief description of a feature from the perspective of an end user.
True or False: Continuous delivery means that code changes are automatically deployed to production.
False
What is a mock in testing?
A simulated object that mimics the behavior of real objects in controlled ways.
Fill in the blank: __________ testing is performed to ensure that the application can handle a specified number of users simultaneously.
Load
What does the term ‘test coverage’ refer to?
The degree to which the source code of a program is tested by a particular test suite.
Multiple Choice: Which of the following is a characteristic of good test cases? A) Ambiguous B) Clear C) Irrelevant
B) Clear
What is the purpose of a defect report?
To document the details of a defect for tracking and resolution.
True or False: A performance bottleneck can occur when a system’s resources are insufficient to handle the load.
True
What is the significance of a test automation strategy?
To outline the approach and tools to be used for automating test processes.
Fill in the blank: __________ testing evaluates the application’s performance and responsiveness under varying loads.
Stress
What is a test environment?
A setup where testing can be conducted, including hardware, software, and network configurations.
Multiple Choice: Which of the following is an advantage of manual testing? A) Speed B) Flexibility C) Consistency
B) Flexibility
What is a release candidate?
A version of the software that is potentially shippable and ready for final testing.
True or False: Test data is the information used to run tests and validate the results.
True
What is the purpose of a code review?
To evaluate the quality of the code and ensure it meets the required standards.
Fill in the blank: __________ testing occurs when the application is tested in a production-like environment.
Staging
What is a test metric?
A quantitative measure used to assess the quality and effectiveness of the testing process.
Multiple Choice: Which of the following is NOT a type of testing? A) Unit Testing B) System Testing C) Code Testing
C) Code Testing
What does ‘CI/CD’ stand for?
Continuous Integration/Continuous Deployment
True or False: Test automation can only be implemented for web applications.
False
What is a performance benchmark?
A standard or point of reference against which things may be compared or assessed in terms of performance.
Fill in the blank: __________ testing is conducted to ensure that the application meets the business requirements.
Acceptance
What is the goal of root cause analysis in testing?
To identify the underlying reason for a defect or failure.
Multiple Choice: Which of the following is a key principle of Agile testing? A) Waterfall approach B) Early testing C) Lengthy documentation
B) Early testing
What is the difference between load testing and stress testing?
Load testing measures the system’s behavior under expected load, while stress testing evaluates its performance beyond normal operational capacity.
True or False: A testing tool should be chosen based on the skill set of the team and project requirements.
True
What is the role of a test lead?
To oversee the testing process, manage the testing team, and ensure the quality of the product.
Fill in the blank: __________ testing is used to ensure that the application works across different browsers and devices.
Cross-browser
What is a testing framework?
A set of guidelines or rules for creating and designing test cases.
Multiple Choice: Which of the following tools is primarily used for performance testing? A) Selenium B) LoadRunner C) JUnit
B) LoadRunner
What is the purpose of a test execution report?
To summarize the results of executed test cases and report any defects found.
True or False: Testing is only needed at the end of the software development lifecycle.
False
What is a defect density?
The number of confirmed defects divided by the size of the software entity, usually measured in lines of code.
Fill in the blank: __________ testing is focused on testing the application under normal operating conditions.
Normal
What is the purpose of test case prioritization?
To determine the order in which test cases should be executed based on factors like risk and importance.
Multiple Choice: Which of the following is an example of a test automation tool? A) Excel B) Postman C) QTP
C) QTP
What is an API?
Application Programming Interface, a set of rules that allows different software entities to communicate.
True or False: Automated tests can be run more frequently than manual tests.
True
What is a test review?
A process to evaluate test artifacts such as test plans, test cases, and test scripts to ensure quality.
Fill in the blank: __________ testing ensures that the application complies with regulatory requirements.
Compliance
What is a release note?
A document that provides information about the new features, improvements, and bug fixes in a software release.
Multiple Choice: Which of the following is a commonly used version control system? A) Git B) JIRA C) Jenkins
A) Git
What is the purpose of a smoke test?
To verify that the most crucial functions of a software application are working after a new build.
True or False: A closed defect means the defect has been resolved and verified.
True
What is a test strategy?
A high-level document that outlines the testing approach and objectives for a project.
Fill in the blank: __________ testing is a technique to ensure that software meets performance expectations under load.
Performance
What is a testing pyramid?
A concept that illustrates the different levels of testing, emphasizing more automated unit tests at the bottom and fewer manual tests at the top.
Multiple Choice: Which of the following describes exploratory testing? A) Scripted B) Ad-hoc C) Automated
B) Ad-hoc
What is the role of a business analyst in testing?
To gather requirements and ensure that the testing aligns with business needs.
True or False: A test case can have multiple test steps.
True
What is a defect triage?
The process of reviewing and prioritizing defects reported during testing.
Relational Database (RDBMS)
A database that organizes data into tables with rows and columns, using relationships between tables. It follows SQL (Structured Query Language) for querying data.
💡 Examples: MySQL, PostgreSQL, Oracle, SQL Server
✅ Key Features:
Uses tables with a predefined schema
Enforces ACID (Atomicity, Consistency, Isolation, Durability)
Uses primary keys and foreign keys to link tables
Non-Relational Database (NoSQL)
A database that does not use tables but stores data in key-value pairs, documents, graphs, or columns. It is more flexible than relational databases.
💡 Examples: MongoDB, DynamoDB, Cassandra, Redis
✅ Key Features:
Schema-less (Flexible structure)
Scalable for big data applications
Can store JSON, key-value, graphs, or columns
Jenkins
An open-source CI/CD automation tool used for building, testing, and deploying applications. It helps automate software development pipelines.
💡 Key Features:
- Automates builds and tests
- Supports plugins for integration with tools like GitHub, Selenium, Docker
- Runs pipelines using declarative or scripted syntax
Postman
A tool for API testing that allows developers and testers to send requests, validate responses, and automate API tests.
💡 Key Features:
Supports REST, SOAP, GraphQL APIs
Automates API testing with collections
Integrates with CI/CD pipelines
Risk-Based Testing (RBT)
A test strategy that prioritizes testing based on risks associated with the application. Higher-risk areas are tested first.
✅ Key Aspects:
Focuses on business-critical features
Identifies high-impact and high-likelihood failures
Optimizes test coverage with limited resources
ACID (Database Transactions)
A set of four properties ensuring reliable database transactions:
✅ Atomicity – All operations succeed or fail together (no partial updates).
✅ Consistency – Ensures valid data before and after the transaction.
✅ Isolation – Transactions do not interfere with each other.
✅ Durability – Data is permanently saved even after system failures.
Pipeline
A series of automated steps used in software development to build, test, and deploy applications.
🛠 CI/CD Pipeline Stages
1️⃣ Build – Compile code, install dependencies.
2️⃣ Test – Run unit, integration, and UI tests.
3️⃣ Package – Prepare application for deployment.
4️⃣ Deploy – Push to staging or production environments.
💡 Example Tools: Jenkins, GitHub Actions, GitLab CI/CD
Endpoint (API Endpoint)
A URL or URI where an API receives and processes requests from clients.
✅ Key Aspects:
Defined in REST, SOAP, or GraphQL APIs
Can support GET, POST, PUT, DELETE operations
Returns JSON or XML responses
A complete web address used to locate a resource on the internet.
URL (Uniform Resource Locator)
A general term for identifying a resource, which includes URLs and URNs.
URI (Uniform Resource Identifier)
A secure, encrypted connection between your device and the internet that hides your IP address and protects your data from hackers or surveillance.
VPN (Virtual Private Network)
Requests data from a server without modifying it. Which HTTP method?…
GET (Retrieve Data)
Sends data to the server to create a new resource. Which HTTP method?…
POST (Create Data)
Updates an entire existing resource. Which HTTP method?…
PUT (Update Data - Full Update)
Deletes a resource from the server. Which HTTP method?…
DELETE (Remove Data)
A Python library for interacting with databases using an Object-Relational Mapper (ORM) and SQL expressions.
SQLAlchemy (Python ORM & SQL Toolkit)
Engine (Database Connection)
The starting point for working with a database in SQLAlchemy. It manages connections and executes SQL queries.
Session (Database Transactions)
A temporary workspace for performing database operations before committing them.
SQLAlchemy (Python ORM & SQL Toolkit) Quick Recap
> Engine: Connects Python to the database
Session: Handles transactions (add, update, delete)
Declarative Base: Defines database models as Python classes
Create Tables: Generates tables based on models
Insert Data: Adds records to a table
Query Data: Fetches data using ORM
Update Data: Modifies existing records
Delete Data: Removes records from the table
Raw SQL: Executes direct SQL queries