Design & Development 009 Flashcards

1
Q

What is Testing?

A

Making sure your code is correct based on predetermined checks.

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

What is a Syntax Error?

A

It is when your code is unable to run based on the code not being written properly. Like a while being misspelled.

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

What is a Logic Error

A

It is when your code runs but something like a value or what happens to one is not what you planned to happen. This mean the code is correct but the placement or processes written are incorrect logically.

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

What is Unit Testing?

A

It is when you run the code to see if there are any errors. This is usually used with code which is split by functions.

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

What is Integration Testing?

A

It is when you run two functions together to see if they work with each other correctly.

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

What is Performance Testing?

A

It is when you check to see if there is no overuse of things like memory or memory leaks. This can also be checking CPU, network or drive usage.

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

What is System Testing?

A

It is when checking if it will run on different systems like Operating Systems and Browser Versions.

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

What is Testing Data?

A

It is when checking if the program will not work based on what is input. Like when you need a Int but but in “a”.

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

What are the types of Testing Data?

A

Valid Data

Invalid Data

Erroneous Data
Imagine you have a range of allowed values, this is making sure that values outside of that range behave in an expected manner.

Missing Data

Extreme Data

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