Make sure that your code will work for the general case not


A function called carefulDivide that takes two floats (x and y) as parameters and returns x divided by y. HOWEVER, if y is zero, instead return the string "ERROR: Divide by zero".

MAKE SURE that your code will work for the general case, not just those cases shown.

FOR EXAMPLE, this call:

print(carefulDivide(11, 2))

print(carefulDivide(11, 3))

print(carefulDivide(11, 0))

Will generate this output:

5.5

3.6666666666666665

ERROR: Divide by zero

Solution Preview :

Prepared by a verified Expert
Basic Computer Science: Make sure that your code will work for the general case not
Reference No:- TGS02729878

Now Priced at $10 (50% Discount)

Recommended (96%)

Rated (4.8/5)