Complete the code to show the first step a computer does with data.
computer_step = '[1]'
The first step a computer does is to input data, which means it receives information from the outside world, like typing on a keyboard.
Complete the code to show what the computer does after inputting data.
computer_step = '[1]'
After inputting data, the computer processes it, which means it works on the data to make sense or change it, like solving a math problem.
Fix the error in the code to show what the computer does to keep data for later.
computer_step = '[1]'
The computer stores data to keep it safe for later use, like saving a file on a disk.
Fill both blanks to complete the flow of what a computer does with data.
computer_steps = ['[1]', '[2]']
The computer first inputs data, then processes it as the next step.
Fill all three blanks to complete the main steps a computer does with data.
computer_steps = ['[1]', '[2]', '[3]']
The main steps a computer does are: input data, process it, and then output the result.