Who started the tablet PC initiative in 2001?

A. Apple
B. Microsoft
C. Google
D. Acer


Answer: B

Computer Science & Information Technology

You might also like to view...

Give commands for each of the following, using wildcards to express filenames with as few characters as possible.

Assume the following files are in the working directory: $ ls intro notesb ref2 section1 section3 section4b notesa ref1 ref3 section2 section4a sentrev a. List all files that begin with section. b. List the section1, section2, and section3 files only. c. List the intro file only. d. List the section1, section3, ref1, and ref3 files.

Computer Science & Information Technology

Which of the following statements are correct?

a. When you create an array using new int[10], an array object is created with ten integers of value 0. b. When you create an array using new int[10], an array object is created with no values in the array. c. When you create an ArrayList using new ArrayList(), an ArrayList object is created with no elements in the ArrayList object. d. When you create an array using int[] x = new int[10], x.length() is 10. e. When you create an array using ArrayList x = new ArrayList(10), x.size() is 10.

Computer Science & Information Technology

The __________ method of KeyEvent returns the key pressed by the user.

a) keys b) KeyCode c) add d) getKeyCode

Computer Science & Information Technology

What is the value of newList after the following code is executed? newList = ["George", "John", "Thomas", "James"]newList.pop()newList.append("Andrew")

A. ["George", "John", "Thomas", "James", "Andrew"] B. ["George", "John", "Thomas", "Andrew"] C. ["Andrew", "John", "Thomas", "James"] D. ["Andrew", "George", "John", "Thomas", "James"]

Computer Science & Information Technology