Visual-Basic-operators
Visual-Basic-operators
1
yyyy
COMPARISON OPERATORS 7 8
NOT(!)
!0 ANSWER 1
!1 0
11 12
SAMPLE
x = 3, y=4;
MAKING GENERALIZATION
1.2(x+y)>(x+y)&& (10 > x)
Requirements:
Find the value of the logical operators;
1.And (&&)
2.Or (||)
3.Not(!) = 2(x+y) > (x+y) && !(10>x)
2
yyyy
THANK
YOU