Which of the following is an example of a computer that is a small, lightweight personal computer that is designed like a clam shell?

A. Desktop computer
B. Laptop computer
C. Server
D. Tablet


Answer: B

Computer Science & Information Technology

You might also like to view...

A(n) ____ is a word that has a special meaning in a programming language.

A. keyword B. token C. object D. handler

Computer Science & Information Technology

6. To place an image on the right side of the window with the text filling the area to the left of the image, the tag would need to look like

a. ``` ``` b. ``` ``` c. ``` ``` d. ``` ```

Computer Science & Information Technology

Which of the following statements are correct?

``` I: File file = new File("input.txt"); try (Scanner input = new Scanner(file)) { String line = input.nextLine(); } II: try (File file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine(); } III: File file; try (file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine(); } IV: File file; Scanner input; try (file = new File("input.txt"); input = new Scanner(file);) { String line = input.nextLine(); }``` a. I b. II c. III d. IV

Computer Science & Information Technology

____ is a set of rules for exchanging data over the Web.

A. FORTRAN B. HTML C. XML D. Java

Computer Science & Information Technology