Answer:
The program in Python is as follows:
apples = int(input("Apples: "))
people = int(input("People: "))
apples%=people
print("Remaining: ",apples)
Explanation:
This gets the number of apples
apples = int(input("Apples: "))
This gets the number of people to share the apple
people = int(input("People: "))
This calculates the remaining apple after sharing the apple evenly
apples%=people
This prints the calculated remainder
print("Remaining: ",apples)
Answer:
in computer science, an instruction is a single operation of a processor defined by the instruction set
Explanation:
if you need anymore help let me know :)
Answer:
https://www.python.org/about/gettingstarted/
Explanation:
its a site i used