Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 5: Assignment, Arithmetic, Relational, and Logical Operations!
Instruction
Overview and Discussion
Relational Operators
A relational operator
is a programming construct that tests or defines some kind of relation between two entities. These include numerical equality (e.g., 5 == 5
) and inequalities (e.g., 4 >= 3
).
Relational operators evaluate the relationship between two operands and return a Boolean value (true or false). They are fundamental in making decisions within p...