Your answer is System Software. Hope this helps.
<span>They include programs that help people do certain tasks. They include programs that control a computer. They store information being used by the CPU.</span>
Answer:
I'm a beginner but I go you!
Explanation:
Answer:
100 times.
Explanation:
The code will loop until i is equal to or greater than roles. I starts at zero and increases by one after each toss.
Answer:
In Python:
def print_volume (r):
volume = 4/3 * 3.142*r**3
print(volume)
print_volume(7)
print_volume(14)
print_volume(22)
Explanation:
This defines the function and takes radius r as the parameter
def print_volume (r):
This calculates the volume
volume = 4/3 * 3.142*r**3
This prints the volume
print(volume)
The next three lines call the function with different values
<em>print_volume(7)</em>
<em>print_volume(14)</em>
<em>print_volume(22)</em>