Introduction to Software Testing Flashcards

1
Q

It is the process of executing the program with the intent of finding faults

A

Testing

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

It is the fourth phase of the software development life cycle (SDLC)

A

Software Testing

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

Is testing the same as debugging?

A

No

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

It removes known errors

A

Debugging

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

It finds hidden errors

A

Testing

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

Testing starts during ___________________ and goes until the last ____________ phase

A

Requirements Analysis ; Maintenance

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

In the early stages of development, we do static testing. This means we review the _____________ to check if it meets user requirements.

A

Software Requirements Specification (SRS)

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

One of the five distinct levels of testing which is defined as the successful correction of a failure.

A

Debug

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

One of the five distinct levels of testing which is the process of showing that major features work with typical input.

A

Demonstrate

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

One of the five distinct levels of testing which is the process of finding as many faults in the application under test (AUT) as possible.

A

Verify

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

One of the five distinct levels of testing which is the process of finding many faults in requirements, design, and AUT.

A

Validate

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

One of the five distinct levels of testing which is to avoid errors in development of requirements, design, and AUT.

A

Prevent

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

This type of testing checks if the system works correctly with valid inputs

A

Positive Testing

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

This type of testing tries to break the system using invalid or extreme inputs.

A

Negative Testing

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

A good tester wants the system to fail to reveal hidden defects.

A

Destructive Mentality

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

The formula for Software Testing

A

Software Testing = Software Verification + Software Validation

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

It ensures development artifacts (requirements, design, code) meet their intended purpose.

A

Verification

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

It ensures the final product meets user requirements,

A

Validation

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

The stage of incremental testing approach where you learn the application

A

Exploration

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

The stage of incremental testing approach where you run a simple test case

A

Baseline Test

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

The stage of incremental testing approach where you check performance when output is unpredictable.

A

Trends Analysis

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

The stage of incremental testing approach where you identify data categories and create tests.

A

Inventory

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

The stage of incremental testing approach where test different input combinations

A

Inventory Combinations

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

The stage of incremental testing approach where you test extreme input values

A

Push the Boundaries

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

The stage of incremental testing approach where you use invalid or unexpected data to see system response

A

Devious Data

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

The stage of incremental testing approach where you try to break the system.

A

Stress the Environment

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

The first stage of Incremental Testing Approach

A

Exploration

28
Q

The second stage of Incremental Testing Approach

A

Baseline Test

29
Q

The third stage of Incremental Testing Approach

A

Trend Analysis

30
Q

The fourth stage of Incremental Testing Approach

31
Q

The fifth stage of Incremental Testing Approach

A

Inventory Combinations

32
Q

The sixth stage of Incremental Testing Approach

A

Push the Boundaries

33
Q

The seventh stage of Incremental Testing Approach

A

Devious Data

34
Q

The last stage of Incremental Testing Approach

A

Stress the Environment

35
Q

These are human mistakes made during development

36
Q

Where can errors grow during the project?

A

They pass from requirements to coding

37
Q

It is a missing or incorrect statement in the code caused by an error

A

Fault (Defect)

38
Q

It occurs when a fault executes and the system does not behave as expected

39
Q

It is shown by wrong outputs, crashes, or unmet constraints

40
Q

It is a sign or symptom of failure

41
Q

It alerts users to a problem but may not require a fix.

42
Q

It is the act of running the software with specific inputs

43
Q

It aims to either find failures or show that the software works correctly.

44
Q

It is a defined set of inputs, steps, and expected outputs

45
Q

It provides structured validations of software functionality, making them a core part of quality assurance.

46
Q

It helps determine if the program passes or fails.

47
Q

Conditions that must be met before running the test.

A

Preconditions

48
Q

Data used during testing.

A

Actual Input

49
Q

Expected state after execution.

A

Postconditions

50
Q

Observed results during testing.

51
Q

Detailed, step-by-step instructions to run test cases.

A

Text Script

52
Q

A collection of test cases or scripts grouped together for testing a specific aspect of a product

A

Test Suite

53
Q

Used for validating bug fixes or finding new defects in a logical or physical part of the system.

A

Test Suite

54
Q

All testing documents (specifications, scripts, cases, data)

55
Q

A method to predict expected outcomes.

A

Test Oracle

56
Q

A chronological record of test execution details.

57
Q

A document summarizing the testing process and results/

A

Test Report

58
Q

This is the Testing life Cycle Phase where bugs are introduced during requirements, design, and coding

A

Development Phase

59
Q

This is the Testing life Cycle Phase where faults from early phases can propagate into later stages.

A

Development Phase

60
Q

This is the Testing life Cycle Phase where bugs are identified through verification and validation.

A

Testing Phase

61
Q

This is the Testing life Cycle Phase where testing ensures that defects are detected before release.

A

Testing Phase

62
Q

This is the Testing life Cycle Phase where bugs are fixed and removed from the system.

A

Bug Resolution Phase

63
Q

This is the Testing life Cycle Phase where fixes can introduce new faults if not handled correctly.

A

Bug Resolution Phase

64
Q

An approach where you stop when you run out of allocated resources (times, budget, or test cases).

A

Pessimistic Approach

65
Q

An approach where you stop when the system meets the required reliability or when further testing cost outweighs its benefit.

A

Optimistic Approach