480,860 views
19 votes
19 votes
is "a dog" smaller or larger than "a mouse"? is 9999+8888 smaller or larger than 100*100? replace the plus sign in the following code to let python check it for you and then answer.

User A Fader Darkly
by
3.0k points

1 Answer

10 votes
10 votes

Answer:

"A dog" is not a quantifiable size, so it is not possible to compare it to "a mouse" in terms of size.

In terms of numerical value, 9999+8888 is larger than 100*100. To check this in Python, you can use the following code:

if 9999+8888 > 100*100:

print("9999+8888 is larger than 100*100")

else:

print("9999+8888 is not larger than 100*100")

This will output "9999+8888 is larger than 100*100".

Step-by-step explanation:

User Oleksii Masnyi
by
2.7k points