Week 10 Flashcards

1
Q

What is Software Testing?

A

Software Testing is the process of examining the functionality and behavior of the software through verification and validation. It ensures that the software is as bug-free as possible, meets the technical requirements as guided by design and development, and meets user requirements.

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

What is verification?

A

Verification is the process of determining whether the software is designed and developed as per the specified requirements – “Are we building it right?” It helps to save time by detecting defects at an early stage of SDLC, and could reduce or eliminate defects that may occur later in the SDLC.

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

What is validation?

A

Validation is the process of checking if the software has met the client’s true needs and expectations – “Are we building the right product?” It ensures that the expectations of all stakeholders are fulfilled, quickly aligns mismatches between the actual product and the client’s anticipated product, and improves the reliability of the end product.

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

What are the two parts of Quality Assurance (testing)?

A

The two parts are verification and validation.

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

How does verification and validation play a part in quality assurance?

A

Verification determines if the workflow has been completed correctly, whereas validation determines if the product as a whole satisfies its requirements (does it solve the original problem).

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

What is the leading principle in software testing?

A

The leading principle is that “Quality cannot be tested into software”. If it isn’t built right in the first place, it is never going to be right.

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

What are the goals of software testing?

A

The goals are to minimise the number of defects inserted, to maximise the number of defects discovered and removed, and to minimise the time span between insertion, discovery, and removal of defects.

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

What are the principles of testing?

A
  1. Exhaustive testing is not possible
  2. Efficient testing: Testing should be done to provide the best possible assessment of the software’s quality with the minimum effort, balancing the cost, time, and benefits of testing. provide the strongest guarantees whilst minimising effort.
  3. Independent testing: Someone else testing would be more effective, we should not test our own code.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the two main categories of Execution Based Testing?

A

The two main categories are Black Box Testing and White Box Testing.

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

What is Black Box Testing also known as?

A

Black Box Testing is also known as functional testing, or behavioral testing.

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

What is Black Box testing?

A

Black box testing is a software testing method that examines the observable functionality of the software without peering into the internal structure or workings.

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

What are the characteristics of black box testing?

A

Black box testing validates conformity to specifications, involves series of inputs and outputs comparison, is applicable to all forms of testing, is architecture independent, focuses on the expected output regardless of how it is produced, can be functional or non-functional, and does not require knowledge of the underlying system or programming skills.

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

What are the different black box testing techniques?

A

Techniques include equivalence partitioning, boundary value analysis, decision table testing, all pairs testing, state transition analysis, cause-effect graph, and error guessing.

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

What is Equivalence Partitioning and how does it work?

A

Equivalence Partitioning is a testing technique that divides input data into equivalent partitions to reduce the total number of test cases while still covering maximum requirements. It involves dividing input values into valid and invalid partitions and selecting representative values from each partition for testing.

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

What is boundary value analysis and how does it work?

A

Boundary value analysis tests values at the edges of equivalence partitions, focusing on the boundaries between partitions.

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

Do more application errors occur at the boundary

A

Yes

17
Q

What is a decision table?

A

A decision table is a tabular form that presents a set of cause and their corresponding effects.

18
Q

test

A

test

19
Q
A