_____ are display devices that can be touched to provide input to the computer associated with them.

A. ?Touch mice
B. ?Touch pads
C. ?Touch screens
D. ?Touch styluses

Answer: C

Computer Science & Information Technology

You might also like to view...

What are the differences between a procedure and a function?

What will be an ideal response?

Computer Science & Information Technology

What is i printed in the following code?

``` public class Test { public static void main(String[] args) { int j = 0; int i = j++ + j * 5; System.out.println("What is i? " + i); } } ``` a. 0 b. 1 c. 5 d. 6

Computer Science & Information Technology