75.1k views
3 votes
The output of 1101 x 10 == 11000 + 10 is

User Skvark
by
4.2k points

2 Answers

4 votes

Answer:

true

Explanation:

= is an operator that returns a boolean if both operand are equal.

1101 * 10 is 11010

11000 + 10 is 11010

11010 == 11010

Thus the output would be True.

User Dlaliberte
by
4.3k points
2 votes

Answer:

True

Explanation:

== is an operator that returns a boolean if both operand are equal.

1101 * 10 is 11010

11000 + 10 is 11010

11010 == 11010

Thus the output would be True.

User Loilo
by
4.3k points