Final answer:
The expression (0×A8&0×57)==0 evaluates to true.
Step-by-step explanation:
(0×A8&0×57)==0 is a mathematical expression that involves the logical AND (&) operator. In this expression, 0 is multiplied with A8 and 0 is multiplied with 57. The result of both multiplications is 0. The logical AND operation is then performed on these results, which simply checks if both operands are nonzero. Since both results are 0, the expression evaluates to 0, making the statement (0×A8&0×57)==0 true. Answer: a) True.