[RESOLVED] conditional and logical
hi i need help in find out the difference between a conditional statement and a logical statement. i cant figure it out and i think the two statements are the same but may be wrong.
so can somebody explain the two statements and give examples? thanks in advance
Re: conditional and logical
If A = B Then C = D
Is a conditional statement. C will only equal D if the condition A = B is True
B = 5
C = 3
D = 7
A = B And C And D
Is a logical statement. A will be equal to 1 because B, C, D are logically AND's together