Computer Science, asked by cedrickclarckson, 5 months ago

Question 4 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.

Answers

Answered by ananthasreemenon4
24

Answer: Dog is larger than a mouse , 9999+8888 = 18887 is bigger than 100*100 = 10000.

Explanation:

pls mark as brainliest if helpful

Answered by syed2020ashaels
1

Explanation:

  • It is well known that a dog is much larger than a mouse in size and shape.
  • //We need to find if 9999+8888 smaller or larger than 100*100 or not

       num= 9999+8888

       num1= 100*100

     if(num>num1):

       large= num

     else:

       large=num1

        print("Greatest number is", large)

//We store the two relations to be checked in two variables and open an if-else loop to find out the largest between the two relations. The largest number or the answer obtained in the relation is printed.

Learn more Python programs here

https://brainly.in/question/35261205

Learn more here

https://brainly.in/question/17495773

Similar questions