Answer:
AndAlso
Explanation:
In visual basic.net programming language, the AndAlso logical operator is a shortcircuiting operator, this means that it by-passes the evaluation of one expression depending on the result of the other. It means that once the condition on the left hand side is false, it will not border evaluating the condition on the right hand side.
Generally the AndAlso operator behaves in the following manner: