0
0
Intro to Computingfundamentals~20 mins

What a computer does (input, process, output, store) in Intro to Computing - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Computer Operations Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Identify the correct sequence of computer operations

Which of the following sequences correctly shows the main steps a computer performs when running a program?

AInput → Store → Process → Output
BInput → Process → Store → Output
CProcess → Input → Store → Output
DStore → Input → Process → Output
Attempts:
2 left
💡 Hint

Think about when the computer saves data before working on it.

trace
intermediate
2:00remaining
Trace the output of a simple computer operation

Imagine a computer program that takes a number as input, doubles it, stores the result, and then outputs it. If the input is 7, what is the output?

Intro to Computing
input_number = 7
stored_value = input_number * 2
output = stored_value
print(output)
A7
BError
C0
D14
Attempts:
2 left
💡 Hint

Multiply the input by 2 before output.

identification
advanced
2:00remaining
Identify which part of the computer handles storing data

Which component of a computer is primarily responsible for storing data temporarily during processing?

AMemory (RAM)
BOutput device
CInput device
DProcessor (CPU)
Attempts:
2 left
💡 Hint

Think about where data is kept while the computer is working on it.

Comparison
advanced
2:00remaining
Compare input and output devices

Which of the following pairs correctly matches an input device with an output device?

AMicrophone and Hard Drive
BKeyboard and Monitor
CPrinter and Mouse
DSpeaker and Scanner
Attempts:
2 left
💡 Hint

Input devices let you send data to the computer; output devices show or produce results.

🚀 Application
expert
2:00remaining
Determine the output after a series of computer operations

A computer program receives the input number 5. It stores the number, adds 3 to it during processing, then outputs the result. What is the output?

Intro to Computing
input_value = 5
stored_value = input_value
processed_value = stored_value + 3
output = processed_value
print(output)
A3
B5
C8
DError
Attempts:
2 left
💡 Hint

Add 3 to the stored input before output.