To format the legend on the chart, use the ____

Answers

Answer 1
Answer: The correct answer for the question that is being presented above is this one: "c. Legend gallery." To format the legend on the chart, use the legend gallery. It is where you can refer for something based on the graph or table or data.
Here are the following choices:
a. Formulas tab
b. Review tab
c. Legend gallery
d.Legend style

Related Questions

A _____ links computer resources using either a wired or wireless connection? 1. hardware system 2. software system 3. network 4. printer
The purchase of equity in a company gives you proportional ownership of the company. This is most similar to ______.A. StockB. DebtC. Collateral
Once a graph has been created, you would need to start over to make any changes to it. true false
_______ allows you to add formatting such as shapes and colors to text.a. wordartb. worddesignc. wordshapesd. worddraw
What are the 7 basic components found in a computer tower

List the six external parts or "peripherals" of a computer system and identify which are the output and which are the input devices

Answers

there are more than 6  but these are the ones that i guess are most common.

input
-keyboard
-mouse

output
-monitor 
-printer
-speaker
-usb (flashdrive)

Write the definition of a method dashedLine, with one parameter, an int. If the parameter is negative or zero, the method does nothing. Otherwise it prints a complete line terminated by a newline to standard output consisting of dashes (hyphens) with the parameter's value determining the number of dashes. The method returns nothing

Answers

Answer:

The following are the program in the Java Programming Language.

//define a function

public void dashedLine (int x)

{  

//check the variable 'a' is greater than 0

if (x>0)

{

//declare integer data type variable

int i;

//set the for loop that iterates from 1 to variable 'a'

for (i=1;i<=x;i=i+1)

{

//print the following dashes

System.out.print("-");

}  

//for empty space

System.out.println("");

}

}

Explanation:

The following are the description of the program.

  • Define a function 'dashedLine()' and pass an argument 'x' in the function's parameter.
  • Then, set the if conditional statement that check the argument x is greater than 0 or not.
  • Then, declare the variable 'i' and set the for loop statement that iterates from 1 to the variable x then, print the dashes and print the empty spaces after every loop statement.

Ned and mary ann are saving their files to a cd

Answers

you can't save files to a cd you can only save music or photos or videos to a cd

Out of all the concepts learned throughout STATISTIC, which one was the most challenging to you, and why? Which concept do you see yourself using the most in your career?

Answers

interquarile range

I found everything easy, but some parts tripped me up.

55 POINTS, IN JAVAIn this program, you need to make an upright tree that contains stars *. Your output should look like:
*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
* * * * * * * * *

Hint: You will need to create a variable that controls how far the * is from edge of the console. That variable should change size each iteration through the outer loop!

Answers

public class JavaApplication82 {

   

   public static void main(String[] args) {

       

       for (int i = 1; i <= 9; i++){

           for (int w = 0; w < i; w++){

               System.out.print("*");

           }

           System.out.println("");

           

       }

   }

   

}

This works for me.

What technique creates different hashes for the same password? ccna routing protocols final answers?

Answers

The answer is Salted Password Hashing.  The process is similar to hashing., but with a twist. A random value is introduced for each user. This salt value is included with the password when the hash value is calculated and is stored with the user record. Including the salt value means that two users with the same password will have different password hashes.