For the following If-statements in VB.NET, what will be the sequence in which the conditions will be evaluated?
Case 1:
If ( condition1 AND condition2 AND condition3 )
.
.
End If
Case 2:
If ( condition1 OR condition2 OR condition3 )
.
.
End If
Case 3:
If ( condition1 OR condition2 AND condition3 OR condition4)
.
.
End If