A data ________ is the individual data plotted in a chart

A) point B) series C) marker D) range


A

Computer Science & Information Technology

You might also like to view...

What two numbers are displayed in the list box when the button is clicked on?

``` Dim nums(2) as Integer Private Sub frmNumbers_Load(...) Handles MyBase.Load nums(0) = 5 nums(1) = 3 nums(2) = 4 End Sub Private Sub btnDisplay_Click(...) Handles btnDisplay.Click lstBox.Items.Add(nums.Average) lstBox.Items.Add(nums.Max) End Sub ``` (A) 4 and 5 (B) 4 and 4 (C) 3 and 5 (D) 3 and 4

Computer Science & Information Technology

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

1. Memory management is concerned with managing the computer’s available pool of memory, allocating space to application routines and making sure that they do not interfere with each other. 2. Processor management is concerned with managing the processor’s time. 3. Some routines, such as the ones that control physical I/O, directly support application programs as they run and thus must be transient. 4. Resident routines are stored on disk and read into memory only when needed. 5. The transient area is where resident operating system routines are loaded.

Computer Science & Information Technology

When resizing a slide presentation, you might get a dialog asking whether you want to Maximize or ________ Fit of the contents to the new size

Fill in the blank(s) with correct word

Computer Science & Information Technology

The Increase Decimal and Decrease Decimal buttons actually add or remove decimal places to the underlying value in a cell

Indicate whether the statement is true or false.

Computer Science & Information Technology