The keywords used in programming languages that use decisions to redirect the flow of a program are called control structures.
Answer:
In Python:
numberOfWholeSlices = int(22/7)
print(numberOfWholeSlices )
Explanation:
For each friend to get a whole number of slices, we need to make use of the int function to get the integer result when the number of slices is divided by the number of people.
So, the number of slice is: 22/7
In python, the expression when assigned to numberOfWholeSlices is:
numberOfWholeSlices = int(22/7)
Next, is to print the calculated number of slices
print(numberOfWholeSlices )
Answer:
Mouse
Explanation:
Input devices allow users to input something in the computer. For example keyboard allows users to type on the computer, or mouse allows users to click.
On the other hand output devices allow computers to output data. For example speakers allow us to hear the outputs of a computer.