DAT Testing Flashcards

1
Q

Define Testing

A

An assessment of the data manipulation tasks undertaken during data movement/processing.

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

What are the four Levels of Testing?

A

Unit Test - Individual software components tested. Code can be refined.
Integration Test - Groups of software tested together. Compatible?
System Test - Whole system tested against requirements. AKA Technical Acceptance Test (TAT).
User Acceptance Test - System tested against business requirements. Often undertaken by user community.

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

What is the difference between White and Black Box Testing?

A

In white box testing, the tester knows the design/implementation of the software. In black box testing, this is unknown to the tester.

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

What are the components of Performance Stress Tests?

A
Performance (speed, reliability)
Load (handle day-to-day use)
Stress (beyond normal limits)
Scalability
Stability
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a Regression Test?

A

Testing the solution again, after changes have been made.

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

What are the types of Test Decks?

A

No-data - Checks handling of missing columns, nulls etc.
Valid data - Checks valid data, including edge cases.
Invalid data - Check handling of data that doesn’t meet rules, and incorrectly formatted (illegal data).
Boundary condition - Check handling of out-of-range data.
Perf. Load. Stress - Test large quantities of data.

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