Answer:
Software, instructions that tell a computer what to do. Software comprises the entire set of programs, procedures, and routines associated with the operation of a computer system. The term was coined to differentiate these instructions from hardware — i.e., the physical components of a computer system.
Explanation:
PA BRAINLIEST
HOPE ITS HELP
GOD BLESS
Answer:
(C)Non-invasive and (D)Tomographic imaging
Answer:
View Image
Explanation:
I don't see any reason to use a pointer for the question their asking.
def func():
total = 0
while True:
pet = input("What pet do you have? ")
if pet == "rock":
return
total += 1
print("You have a {} with a total of {} pet(s)".format(pet, total))
func()
We wrapped our code in a function so that whenever the user enters rock, we can simply return and exit the function. If you have any other questions, I'll do my best to answer them.