Week 11 Flashcards

0
Q

Why do we test?

A

There are 1-3 bugs for every 100 instructions in code. The testing process it’s very important to determine if any defects exist.

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

What are the steps in a physical database design?

A
  1. Change entities to tables or files
  2. Change attributes to fields
  3. Add primary keys
  4. Add foreign keys
  5. System related components (system related tables and fields)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Draw the V model of testing

A
Business case
Requirement
Systems spec
System design
Module design
Module
Module/unit test
Interface/integration test
System test
User acceptance test
Release test
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Describe unit testing

A

Unit testing consists of testing individual modules of code before integration with other software.

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

Describe the integration test

A
The integration test tests the behavior of a group of modules.
Errors can include:
– Interface incompatibility
– Incorrect parameter values
– Runtime exceptions
– Unexpected state directions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Describe the user acceptance test

A

The user acceptance test consists of alpha testing which is performed by users to ensure they except the system And beta testing where users monitor for errors or needed improvements.

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

Describe the system test

A

The system test tests the behavior of the entire system. It is often used to check if a COTS interacts properly with any custom system changes

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

What are the three major elements of a test case?

A
  1. Conditions
  2. Parameters
  3. Expected results
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Describe the V model of testing

A

Testing of the product is planned in parallel with the corresponding phase of development.

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