0
0
Intro to Computingfundamentals~20 mins

Input devices (keyboard, mouse, touchscreen) in Intro to Computing - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Input Device Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
How does a keyboard send input to a computer?

Imagine typing on a keyboard. What happens inside the computer when you press a key?

AThe keyboard stores the characters and sends them all at once when you press Enter.
BThe keyboard sends images of the keys pressed to the computer for processing.
CThe keyboard sends sound waves to the computer, which converts them into text.
DThe keyboard sends electrical signals to the computer, which the computer translates into characters.
Attempts:
2 left
💡 Hint

Think about how pressing a key can be understood by the computer instantly.

trace
intermediate
2:00remaining
Trace the input flow from mouse click to action

When you click a mouse button, what is the correct sequence of events inside the computer?

A1,2,3,4
B2,1,3,4
C1,3,2,4
D3,2,1,4
Attempts:
2 left
💡 Hint

Think about what happens first and how the signal flows.

identification
advanced
2:00remaining
Identify the input device from its description

Which input device uses a grid of sensors to detect the position and pressure of your finger?

AKeyboard
BTouchscreen
CMouse
DMicrophone
Attempts:
2 left
💡 Hint

It lets you tap or swipe directly on the display.

Comparison
advanced
2:00remaining
Compare how mouse and touchscreen detect input

Which statement correctly compares how a mouse and a touchscreen detect user input?

ABoth mouse and touchscreen detect input by sending sound waves to the computer.
BA mouse detects input by sensing finger position on the screen; a touchscreen detects movement by tracking a ball.
CA mouse detects movement by tracking a ball or sensor movement; a touchscreen detects input by sensing finger position on the screen.
DA mouse and touchscreen both use keyboards to detect input.
Attempts:
2 left
💡 Hint

Think about how you move a mouse versus how you touch a screen.

🚀 Application
expert
2:00remaining
Determine the output when combining input devices

Consider a computer program that accepts input from both a keyboard and a touchscreen. The program waits for a key press or a screen tap. If the user taps the screen at position (150, 300), and then presses the 'Enter' key, what will the program receive in order?

AFirst the coordinates (150, 300), then the 'Enter' key signal.
BFirst the 'Enter' key signal, then the coordinates (150, 300).
COnly the 'Enter' key signal, because touchscreen input is ignored.
DOnly the coordinates (150, 300), because keyboard input is ignored.
Attempts:
2 left
💡 Hint

Think about the order of user actions and how input devices send signals.