Answer:
D
Explanation:
Based on the information given, the correct option will be:
D. findMin(-1,1)findMin(1,-1)
findMin(1,1)
It should be noted that based on the information given, the correct option is D because it contains a duplicate set of numbers.
In this case, "1,1", would be vital in breaking the algorithm and require a bug fix from the developer. This then makes it the most helpful.
In conclusion, the correct option is D.
Learn more coding on:
https://brainly.com/question/22654163
explain the digitization process
Answer:
Digitization is the process of converting information into a digital (i.e. computer-readable) format. The result is the representation of an object, image, sound, document or signal (usually an analog signal) by generating a series of numbers that describe a discrete set of points or samples
Explanation:
Use the function random.randint to write a program that rolls a 6-sided die 100 times, and prints out all of the rolls.
Print each roll on its own line.
import random
for x in range(100):
print(random.randint(1,6))
I wrote my code in python 3.8. I hope this helps.