Answer:
import random
decisions = int(input("How many decisions: "))
for i in range(decisions):
number = random.randint(0, 1)
if number == 0:
print("heads")
else:
print("tails")
Explanation:
*The code is in Python.
import the random to be able to generate random numbers
Ask the user to enter the number of decisions
Create a for loop that iterates number of decisions times. For each round; generate a number between 0 and 1 using the randint() method. Check the number. If it is equal to 0, print "heads". Otherwise, print "tails"
B.Proper diagnosis will save time and money
Answer:
No
Explanation:
If it is coming from a database, it is only as valid as the database makes it. If it is coming from a form, it is only as valid as the answers given by the user who filled in the form. If it is from a discussion board/forum/blog, again it is only as valid as the person who added the information.
Both 2 and 3
Your employer is able to contact the power companies for further protection.