group 7 Flashcards

1
Q

This ensures only properly formed data is entering the workflow in an information system, preventing vulnerabilities that can compromise the system, like SQL injections.

A

user input validation

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

In Visual Basic (VB), ___ is crucial to ensure that the data entered by the user is correct and can be processed without causing errors.

A

input validation; user input validation in vb

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

Techniques for validating user input

A

Using If Statements
Using try…catch blocks

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

This method checks whether the input meets specific conditions and executes certain actions based on those conditions. If the input does not meet the criteria, the program can display an error message or take corrective action.

A

Using If Statements

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

This method handles exceptions that occur during code execution. If an error is thrown within the try block, the catch block captures the exception and allows the program to handle it gracefully, such as by displaying an error message or taking corrective action.

A

Using try…catch Blocks

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

Preventing common user input errors

A

I. Clear and concise labels and instructions
II. Real-time Input Validation
III. Review, Confirm,
Submit

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

Best tips!

A

Verify Data Before Submission

Protect Sensitive Information

Avoid Copy-Pasting

Save Your Progress

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