COGNITIVE ASSESSMENT
You are using an optical disc on your game console. Which of the following is it most likely to be?

A. CD-RW
B. mini disc
C. play disc
D. DVD-ROM


Answer: B

Computer Science & Information Technology

You might also like to view...

What is the value of ans, x, and y after the following statements are executed?

``` int ans = 0, x = 15, y = 25; if ( x >= y) { ans = x + 10; x -=y; } else { ans = y + 10; y += x; } ``` a. ans = 0, x = 15, y = 25 b. ans = 25, x = -10, y = 25 c. ans = 35, x = 15, y = 40 d. ans = 25, x = 15, y = 40

Computer Science & Information Technology

One way of dealing with the PCDATA problem is to use a special construct called a CDATA ____________________, which marks a block of text as CDATA.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

To insert introductory information in a document choose a(n) ________ page style from the pages group

A) master B) custom C) cover D) introductory

Computer Science & Information Technology

In MySQL, the data type STRING(n) stores a character string n characters long.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology