Expressions - Programming

Q1:

In the expression a=b=5 the order of Assignment is NOT decided by Associativity of operators

A True

B False

ANS:B - False

The equal to = operator has Right-to-Left Associativity. So it assigns b=5 then a=b.