Answer:The correct way to test whether d1 = d2 = d3 using Boolean and logical operators is:
C. d1 = d2 = d3
In this expression, the equality operator (=) is used to compare d1, d2, and d3, and the result of the comparison is then compared again using the equality operator. This expression will return true if and only if d1, d2, and d3 are all equal to each other.
Step-by-step explanation: