When comparing multiple conditions with 'AND', will the comparisons stop if the first condition is not met?
for example; if 'A' AND 'B': if not 'A', will 'B' be considered?
To remove the negative points for duplication... If one knew that the problem was called short-circuiting, it could have easily been searched, but the first condition was False in this case and short-circuited the second condition, the search. This was a question of which term to search and not on of how the term functions.