Question: Given a function that takes in three digits a , b , c and returns if True a summed with b is less than c

Given a function that takes in three digits a, b, c and returns if True a summed with b is less than c and False otherwise
What seems to be the most appropriate set of test cases
Note: an important part of testing is making sure expected output and actual output are the same.
Note: an important part of testing trying to cover all possible cases.
If you believe that more than one answer applies choose the best answer.
Group of answer choices
a=4, b =4, c =4, output = False
a=-4, b =-4, c =-4, output = True
a=-1, b =-4, c =4, output = True
a=0, b =0, c =0, output = False
a=4, b =-1, c =-4, output = False
a=4, b =4, c =4, output = False
a=-4, b =-4, c =-4, output = True
a=-1.5, b =-4.9, c =4.2, output = True
a=0, b =0, c =0, output = False
a="a", b ="b", c ="c", output =???
a=4, b =4, c =4, output = False
a=-4, b =-4, c =-4, output = False
a=3333333333333333333333333333333333333333333333333333333333333333333333, b =-9, c =-4, output = False
a=0, b =0, c =0, output = False
a="a", b ="b", c ="c", output = False
a=4, b =4, c =4, output = False
a=-4, b =-4, c =-4, output = True
a=-4, b =4, c =4, output = True
a=4, b =-4, c =4, output = True
a=4, b =4, c =-4, output = False
a=4, b =4, c =4, output = True
a=-4, b =-4, c =-4, output = True
a=1, b =4, c =4, output = False
a=0, b =0, c =0, output = True
a=4, b =-4, c =-4, output = False

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!