The symbol on the Enter button is a(n) ________

A) right arrow
B) left arrow
C) x
D) checkmark

Answer: D

Computer Science & Information Technology

You might also like to view...

Which site offers webinars and videos on a variety of skills for applications like Microsoft Word and Access?

A) How Stuff Works B) New York Times Learning Network C) Microsoft Office Training D) Webopedia

Computer Science & Information Technology

What is wrong with this function?

```void Multiply( int x, int y ) { int z; z = x * y; return z; }``` A. You can’t have 2 input arguments. B. Multiply doesn’t know what z is. C. The return type is void. D. There is nothing wrong with it.

Computer Science & Information Technology