C-16-Q106mediumsingle_mcq
In Op1 == (Op2 + Op3), the relational operator first allows:
In Op1 == (Op2 + Op3), the relational operator first allows:
- aonly constants on each side
- barithmetic expressions on either side
- conly single variables on each side
- donly string operands
ব্যাখ্যা
Relational operators can compare complete arithmetic expressions, not just single values, so either side may itself be a computed expression like Op2 + Op3. The expression is evaluated first, then the comparison is made.