Bird
Raised Fist0
Intro to Computingfundamentals~6 mins

What a computer does (input, process, output, store) in Intro to Computing - Full Explanation

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Introduction
Imagine you want to bake a cake. You need ingredients, a recipe to follow, the oven to bake, and then you get the cake to enjoy. A computer works in a similar way by taking information, working on it, showing results, and saving data for later.
Explanation
Input
Input is how a computer receives information from the outside world. This can be through a keyboard, mouse, microphone, or even a camera. The computer waits for this information to start working.
Input is the way a computer gets information to work on.
Process
Processing is like following a recipe. The computer takes the input and uses its brain, called the processor, to do calculations or make decisions. This step changes the input into something useful.
Processing is the computer’s way of turning input into useful results.
Output
Output is how the computer shows the results of its work. This can be on a screen, through speakers, or by printing on paper. Output lets us see or hear what the computer has done.
Output is the result the computer gives us after processing.
Store
Storing means saving information so the computer can use it later. This can be on a hard drive, a USB stick, or in memory. Storage keeps data safe even when the computer is turned off.
Storage keeps information saved for future use.
Real World Analogy

Think of a bakery: you bring ingredients (input), the baker mixes and bakes them (process), the finished cake is displayed for customers (output), and leftover cakes are stored in the fridge for later (store).

Input → Bringing ingredients to the bakery
Process → Baker mixing and baking the ingredients
Output → Displaying the finished cake for customers
Store → Keeping leftover cakes in the fridge
Diagram
Diagram
┌─────────┐    ┌───────────┐    ┌─────────┐    ┌─────────┐
│  Input  │ → │ Processing│ → │ Output  │ → │  Store  │
└─────────┘    └───────────┘    └─────────┘    └─────────┘
A flow showing how a computer takes input, processes it, produces output, and stores data.
Key Facts
InputThe method by which a computer receives data from the user or environment.
ProcessorThe part of the computer that performs calculations and makes decisions.
OutputThe way a computer presents the results of its processing to the user.
StorageWhere a computer saves data for immediate or future use.
Common Confusions
Thinking output is the same as storage.
Thinking output is the same as storage. Output is temporary and shows results immediately, while storage saves data for later use.
Believing processing happens without input.
Believing processing happens without input. Processing always needs input data to work on; without input, there is nothing to process.
Summary
A computer works by taking input, processing it, showing output, and storing data.
Input is the information given to the computer, and output is what it shows after working on that information.
Storage keeps data saved so it can be used again later.

Practice

(1/5)
1. Which of the following best describes the process step in what a computer does?
easy
A. The computer performs calculations or actions on the input data.
B. The computer shows the final result on the screen.
C. The computer receives data from the keyboard or mouse.
D. The computer saves data to a hard drive or memory.

Solution

  1. Step 1: Understand the role of processing

    Processing means the computer works on the input data, like mixing ingredients in cooking.
  2. Step 2: Differentiate from other steps

    Input is receiving data, output is showing results, and storage is saving data. Processing is the action in between.
  3. Final Answer:

    The computer performs calculations or actions on the input data. -> Option A
  4. Quick Check:

    Process = perform actions [OK]
Hint: Process means the computer works on input data [OK]
Common Mistakes:
  • Confusing output with process
  • Thinking input is processing
  • Mixing storage with processing
2. Which of the following is the correct order of steps a computer follows?
easy
A. Process -> Store -> Input -> Output
B. Output -> Input -> Store -> Process
C. Input -> Process -> Output -> Store
D. Store -> Output -> Input -> Process

Solution

  1. Step 1: Recall the four main steps

    The computer first takes input, then processes it, shows output, and finally stores data.
  2. Step 2: Match the correct sequence

    Input -> Process -> Output -> Store matches the correct order: Input -> Process -> Output -> Store.
  3. Final Answer:

    Input -> Process -> Output -> Store -> Option C
  4. Quick Check:

    Order = Input, Process, Output, Store [OK]
Hint: Remember: Input first, then process, output, and store last [OK]
Common Mistakes:
  • Mixing output before input
  • Putting store before process
  • Confusing the order of steps
3. Look at this flowchart of a computer task:

What is the correct output if the input is 5 and the process doubles the number?
medium
A. 10
B. 5
C. 25
D. 0

Solution

  1. Step 1: Identify the input and process

    The input is 5, and the process doubles it, so 5 x 2 = 10.
  2. Step 2: Determine the output

    The output is the result of the process, which is 10.
  3. Final Answer:

    10 -> Option A
  4. Quick Check:

    Input 5 doubled = 10 [OK]
Hint: Output is processed input, here double 5 = 10 [OK]
Common Mistakes:
  • Using input value as output without processing
  • Squaring input instead of doubling
  • Choosing zero as output by mistake
4. A student wrote this sequence for a computer task:
Input -> Output -> Process -> Store
What is wrong with this order?
medium
A. Input should come after storing data.
B. Storing data should happen before input.
C. Processing should be last step.
D. Output comes before processing the input.

Solution

  1. Step 1: Review correct step order

    The correct order is Input -> Process -> Output -> Store.
  2. Step 2: Identify the error in given order

    Output is shown before processing, which is incorrect because output depends on processing.
  3. Final Answer:

    Output comes before processing the input. -> Option D
  4. Quick Check:

    Output must follow processing [OK]
Hint: Output must come after processing input [OK]
Common Mistakes:
  • Thinking output can come before processing
  • Confusing storage with input
  • Believing processing is last step
5. Imagine you want to create a simple calculator program that adds two numbers. Which sequence correctly shows what the computer does?
hard
A. Store numbers -> Input numbers -> Process addition -> Output result
B. Input numbers -> Process addition -> Output result -> Store result
C. Output result -> Input numbers -> Process addition -> Store result
D. Process addition -> Input numbers -> Store result -> Output result

Solution

  1. Step 1: Understand the calculator steps

    The computer first takes input numbers, then adds them (process), shows the result (output), and finally saves the result (store).
  2. Step 2: Match the correct sequence

    Input numbers -> Process addition -> Output result -> Store result matches this order perfectly: Input -> Process -> Output -> Store.
  3. Final Answer:

    Input numbers -> Process addition -> Output result -> Store result -> Option B
  4. Quick Check:

    Calculator steps = Input, Process, Output, Store [OK]
Hint: Calculator: input numbers, add, show, then save [OK]
Common Mistakes:
  • Trying to output before input
  • Storing before processing
  • Mixing order of steps