Unit 2 - 3 Flashcards

1
Q

Define input validation?

A

Used to ensure that the data entered by the user is valid, acceptable

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

Give 2 checks to check input validation of age?

A

Length check
Number check

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

What is indentation used for?

A

Ensure if, elif, else statements work

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

What are comments used for?

A

So human user can understand code better, code does not process this

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

Explain the purpose of authentication?

A

Checks to see if user is allowed access to a system and checks to see if they are real and who they actually are

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

What is the difference between validation and authentication?

A

Verification - checks data is valid
Authentication - checks is user is valid and identity

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

What are the 2 types of error?

A

Syntax - mistakes in source code
Logical - an error in the logic of the code

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

Why do programs need to be tested?

A

Test them while developing them to make sure they work as expected

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

What are the 2 types of testing?

A

Iterative and terminal

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

What is iterative testing?

A

Making smaller, gradual changes or updates to a product based on insights

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

What is terminal (final) testing?

A

Carried out when all modules are complete and the program is tested as a whole that it functions as it should

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

What is the use of subprograms?

A

Small in size, much easier to write
Saves time, code that has already been written

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