ISTQB review P1 Flashcards

1
Q

Test Cases

A

-test cases describe how the software should work under normal, abnormal, and error operating conditions and are written as a set of instructions for testers

-process flows/descriptions detailing the typical use of the system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Equivalence partitions

A

are a black box technique that allows testers to group input data into sets or classes so there are less test cases and you still get comprehensive coverage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Experience based test design

A

a. based off a user’s experience and is best used when you don’t have time for a more structured approach and the requirements aren’t good enough or you don’t have any, and there is limited knowledge on the product
b. 1/3 types - error guessing where the tester focuses on the places prone to error
c. 2/3- checklist based where the person goes through a list of main functions that should be expected
d. 3/3 exploratory testing- where you just play around with the app and use basic life experience to see if you can comfortably use it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Test planning vs test execution

A

test planning ensures testing is efficient and effective and test execution ensures the testing is thorough and that the product can be released

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

User acceptance testing

A

a. is also called
i. beta testing where the
b. product is tested in real life by its intended audience or business reps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Reliability of a product vs the quality

A

quality testing is if the product works at all, and how well it works, reliability and durability testing is how well the product will hold up, like how long, in what conditions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Integration testing test level

A

is the 2nd level of testing after unit testing and is when you check how components or units of the software work together the way they should. Unit testing checks small pieces of code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Test basis

A

the source of information or the document needed to write test cases and for test analysis

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Test leader vs tester

A

Test leader would:
create the test strategy and write the test summary report.
The tester would create the test specification and raise an incident report.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Test strategy vs - test specification

A

the test strategy comes from the Business Requirement document (BRS) vs the software requirement specification (SRS) for the test plan. It’s a live document that gets updated as more information becomes available. The test strategy document is also called a Static document. It’s more vague than the SRS and is for the stakeholders. Test specification
focuses on scenarios and is a detailed summary of what scenarios will be tested, how they will be tested, how often they will be test etc for each feature.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Decision table testing

A

design test cases based on the combos of inputs and outputs for a system or component. Black box technique

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Statement testing

A

ensures each line of code for that function Is executed at least once, covering each path from the source code. White box technique

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

State transition testing

A

analyzes how the application behaves based on different input conditions.

It’s good when there are not that many input value options

the system depends on previous values.

Black box technique

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Equivalence testing

A

Using equivalence partitions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Component testing

A

tests individual components separately from other components. It can be done white box or black box

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Fault attacks

A

causing an error on purpose to see what happens

17
Q

Black box techniques and why it’s useful

A

black box techniques check beyond functionality and gives more insight on how a function is completed, and if it’s usable, and easy to understand

18
Q

Project life cycle models

A

Sequential, iterative-incremental approach, waterfall, agile

19
Q

Sequential project life cycle model

A

means the following phase starts only when the previous phase is complete

The sequential methodology first discovers all steps in the analysis plane, followed by all steps in the design plane, followed by all steps in the implementation plane, and then followed by all steps in the testing plane. This can be accomplished because the environment is static and finite.

20
Q

Iterative-incremental approach

A

iterative approach is when the project is broken into fully working parts, incremental is when they work on everything enough to release it, but not till it’s perfect so you end up not building the whole thing at once

These parts, or iterations, are fully developed and tested in cycles, allowing for modifications after each completion

21
Q

Waterfall

A

is the most structured with time tables. It’s the most traditional and linear.

Follows a sequential and linear process. It consists of distinct phases: planning, requirements gathering, system design, implementation, testing, and deployment.

22
Q

Agile

A

i. is also known as the
1) adaptive life cycle
ii. and combines iterative and incremental
I think the agile part is the part where things are repeated till they are fixed, the iterative part

23
Q

Master test plan

A

document that describes how the testing will be handled and gives a birds eye view of how the testing will be handled across different levels

24
Q

Test objects

A

the product, system, module, functionality, or even line of code that is being specifically tested.

25
Q

Decision table testing

A

software testing method where you test the system based on input combos

26
Q

Configuration management

A

when you identify the parts that make up the software or system and then making sure each part is managed well during the product life cycle

How changes are handled systematically so a system keeps its integrity relating to performance, function, physical attributes, and requirements

27
Q

Traceability

A

the ability to trace tests forward and backward in the development life cycle. You are able to link a test to a set of requirements in the test case confirming that it works

28
Q

Test artifacts

A

Test artifacts(test deliverables) are documents and scripts created during software testing to ensure that the tested application meets the desired quality standards. These artifacts provide evidence of the testing process and valuable insights into the overall testing efforts

29
Q

Test analysis

A

Test analysis inspects and analyzes the test artifacts to create test conditions or cases. Test analysis aims to collect requirements and create test objectives to establish test conditions. As a result, it’s also known as Test Basis

30
Q

See example of test basis

A

System Requirement Document (SRS)
Functional Design Specification.
Technical Design Specification.
User Manual.
Use Cases.
Source Code.
Business Requirement Document (BRD)

31
Q

If user acceptance testing is beta testing, is there something called alpha testing?

A

Alpha testing is done by internal developer and QA teams, with its main goal being to ensure that the software is functional, reliable, and free of any defects or errors. Alpha testing generally attempts to simulate real user behavior by using black and white box testing techniques

32
Q

Types of white box testing

A
  1. Statement testing
    2. Branch coverage
    i. This checks every possible path
    3. Decision
    4. Condition coverage
    5. Multiple condition coverage
    6. Finite state machine coverage
    7. Path coverage
    8. Control flow testing
    9. Data flow testing
    10. Penetration testing
    i. Used to expose security threats
    11. Mutation testing
    Used to find the best coding techniques for a software solution
33
Q

Positive and Negative input test values

A

Positive testing determines that your application works as expected. If an error is encountered during positive testing, the test fails. Negative testing ensures that your application can gracefully handle invalid input or unexpected user behavior

34
Q

What is test control

A

Test Control occurs based on the results of Test Monitoring. It refers to taking corrective action based on test monitoring reports to improve quality and efficiency. Some examples of test control activities would be: Prioritize testing efforts in a different way. Reorganize test schedules and deadlines

35
Q

Decision table testing: unit component or integration level

A

Component

36
Q

Statement testing: unit component or integration level

A

Component

37
Q

State transition coverage: unit component or integration level

A

Component

38
Q

Equivalence partitioning: unit component or integrative

A

Component