Describe the difference between an X-axis and a Y-axis

What will be an ideal response?


The X-axis of a chart is a horizontal border that provides a frame of reference for measuring data horizontally. The Y-axis is a vertical border that provides a frame of reference for measuring data vertically. Excel refers to the axes as the category axis and value axis.

Computer Science & Information Technology

You might also like to view...

Which of the following is an example of code injection?

a. CSS b. XSS c. DoS d. MITM

Computer Science & Information Technology

Refer to function fox below when answering Question.

``` int fox (int m, int n) { int ans; if (m < 10) if (n < 10) ans = m + n; else ans = fox (m, n-2) + n; else ans = fox (m-1, n) + n; return ans; } ``` What is the value of fox (11, 11); ? a. 18 b. 29 c. 39 d. 51 e. 0

Computer Science & Information Technology

____ is an example of a specific database software package.

A. Linux B. Unix C. MyDB D. Access

Computer Science & Information Technology

Which option is used with the crontab command to delete all jobs?

A. -e B. file C. -l D. -r

Computer Science & Information Technology