You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The zero property of multiplication states that the product of any number and zero is always zero. However, in the implementation:
zero = zero1&zero2;
In my opinion, it should be:
zero = zero1|zero2;
Could you help me understand this?
The text was updated successfully, but these errors were encountered:
The zero property of multiplication states that the product of any number and zero is always zero. However, in the implementation:
zero = zero1&zero2;
In my opinion, it should be:
zero = zero1|zero2;
Could you help me understand this?
The text was updated successfully, but these errors were encountered: