Example: Relational operators
For these examples, tag_1 = 5 and tag_2 = 7.
tag_1 > tag_2
is false, so the expression returns a 0 tag_1 LE tag_2
is true, so the expression returns a 1 tag_1 == 5
is true, so the expression returns a 1 Provide Feedback