Clean Code Flashcards
1
Q
A clean code is understandable in terms of …?
A
READABILITY EXTENSIBILITY AND MAINTAINABILITY
2
Q
What is a technical debt
A
Doing things in a quick and dirty way which results to CODE REWRITING
3
Q
Functions that require zero arguments
A
Niladic
4
Q
Functions that require one argument
A
Monadic
5
Q
DRY RULE
A
Dont repeta yourself \ eliminate duplicates
6
Q
Wet rule
A
Write everything twice / opposite of dry ruke
7
Q
Kiss rule
A
Keep it simple stupid / implementation is simple as possible
8
Q
Boyscout rule
A
Always leave the campground cleaner than you found it