Programming - Robust Programs Flashcards
1
Q
Authentication
A
Method of ensuring a user is who they say they are. Example: Username and password system.
2
Q
Validation
A
Ensuring that an input is valid, so within certain specifications, e.g length of the data, wether data is within a certain range.
3
Q
Naming Conventions
A
Ensuring names of variables are clear and understandable. UN is not as acceptable as User_Name. As User_Name is much clearer.
4
Q
Indentation
A
Used to group together a function or block of code. Makes code easier to read and more structured