In programming language like C#, java if a condition has multiple expressions with AND(&&) operator then the second expression is only evaluated if first expression is true.
What about in TSQL? To be specific this is a condition in a Stored procedure in Microsoft Sql server.
IF (exprA AND exprB)
In the above condition if exprA is false then will the exprB is evaluated or not?