What is the first thing Charlotte needs to do after she opens an Excel spreadsheet?

A. Select another program
B. Select a different template
C. Select new blank program
D. Select new blank workbook

Answers

Answer 1

Answer: C

I hope this helps


Related Questions

I've got a question that is: What's a multimedia product ?

Answers

Explanation:

Multimedia Product means a product where software allows for interaction between the user and various media technologies such as the reproduction of sound and image.

hope this helps you.

A student should be most cautious using a web address ending in

Answers

Answer:

It is .com because all the others are school-safe. And .com is snatch-able.

Explanation:

Answer:

.com

Explanation:

Why might you want to save a spreadsheet as a PDF file?

Answers

Answer:

so that the required content wont be edited

So you wont forget the links

What is an Internet Service Provider? Describe at least two types of ISP. (I NEED THIS ASAP LIKE NOW)

Answers

Answer:

A company that provides service to its subscribers to the internet | WiFi, cellular data

Explanation:

WiFi provides service to its subscribers to the internet; the same applies to cellular data.

Dawn is trying to find out how much weight she can push across the room. She is really trying to find her __________. A. flexibility B. muscular endurance C. cardiovascular fitness D. muscular strength

Answers

The correct answer is d. muscular strength.

Explanation :

The maximal force a muscle can create when it contracts is referred to as muscular strength. When compared to someone with lower physical strength, someone with better muscular strength can lift heavier weights. Lifting progressively larger weights over time and eating a diet rich in protein-based foods can help a person's physical strength gradually grow.

I hope this helps. Please mark "Brainliest" if you can.

Here is the first paragraph. It has two sentences.
This is the second paragraph. It also has two sentences.
This is the third paragraph, consisting of a single sentence.

The missing element is... Which one

Answers

Answer:

I don't quite understand, you need to give us the full options with the question a bit more clearer

Answer: it is <p></p>

Explanation: guessing didn't pay off : (

Assume that inputList is an ArrayList of Integer objects that contains the following values. [0, 10, 30, 40, 50, 70, 70, 70, 70] What value will be returned by the call binarySearch(inputList, 0, 8, 70)

Answers

Based on the inputList and the binarySearch, the value that will be returned by the call binarySearch above is 6.

What value will be returned?

With inputList =  [0, 10, 30, 40, 50, 70, 70, 70, 70], the first call would be:

1st call = binarySearch(inputList, 0, 8, 70)

mid = 8 + (0/2)

= 4

if (70 is less then 50)

A second call would yield:

2nd call = binarySearch(inputList, 5, 8, 70)

mid = 13/2

= 6

if (70 = (70))

Return is 6 is the above holds so output is 6.

Find out more on Binary searches at https://brainly.com/question/21475482.

The USGS and National Weather Service have many sensors collecting data about natural events.
That data can be used to create a weather map. Identify the parts of the Input-Process-Output model for each step.

_______ weather map displayed on a web page

_______ determination of color to be used on the map

_______ sensors collect temperature and precipitation data

Options: Output, input, process.​

Answers

Answer:

1. Output

2. Process

3. Input

Explanation:

Answer: Output, Process, Input

Explanation: got it right on edgen

4.
prevents many people from having access to technology and the Internet.
A. Digital literacy
B. Living in a wealthy nation
C. A good infrastructure
D. Income inequality

Answers

Income inequality and  Digital literacy prevents many people from having access to technology and the Internet.

How does digital system affect people's lives?

People do not have access to internet because of poor economic and social problems, such as fewer job opportunities, less competitive economies and others.

Other Factors such as digital literacy and low income levels, geographical restrictions, lack of zeal to use technology are known to have contributed to the digital division in the country.

Learn more about Income inequality from

https://brainly.com/question/24554155

Question #5
Multiple Choice
Which of these is a feature of a vector graphic?

1. photorealism
2. wireframe
3. quality loss when resizing
4. pixels​

Answers

Vector graphics are photorealistic and as such a feature of a vector graphic is photorealism.

What is a vector graphic?

A vector graphics are graphics that are made up of paths, that is they are known by a start and end point, in line with other points, curves, etc. as seen along the way.

Note that in vector graphics,  A path can be made of a line, a square, a triangle, etc.

Learn more about  vector graphic from

https://brainly.com/question/7205645

Answer:

wireframe

Explanation:

got it right on edge

dose anybody know how to look up questions by how many points they give you and if you cant do that we need to be able to do that lol.

Answers

Answer:

Uhh... I don't think we can do that lol.

Create a structure representing a student. The member variables should include student name, student ID, and four test grades for the student (an array of four grades as a member variable). Prompt the user to enter the name, ID, and the four positive test results. Perform error checking for negative values. Store all the data in a structure object. Calculate the average of the three highest grades, dropping the lowest grade. Display the student's name, ID number, four test grades, and the average of the three highest grades. Use a loop to repeat the questions for the next student. You can recycle the same struct object for the next student. Terminate the program when the user decides to stop.

Answers

Answer:

Output:

Name: Brainly

ID:0001

Write the 4 tests grades of the student separated by space :10 9 8 10

Brainly

0001

10 9 8 10

Average :9.66667

'1' to continue '0' to exit :

Explanation:

#include<iostream>

#include<string>

using namespace std;

//variables declaration

struct Student {

  string id; //string declaration ID

  string name; // string declaration name

  int grades[4]; //array of 4 because it is 4 grades

};

//definition of the function get information

void inputData(Student &s){

 

   

   cout << "Name:" ;

   getline(cin,s.name);

   cout << "ID:";

   cin >> s.id;

   cout << "Write the 4 tests grades of the student separated by space :";

   for (int i = 0; i<4; i++)

       cin >> s.grades[i];

}

//definition of the function of average

double inputAvg(Student s){

   double summation;

   int temporary;

   double average;

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

      for (int j = i; j<4; j++){

         if (s.grades[j] > s.grades[i]){

             temporary = s.grades[i];

             s.grades[i] = s.grades[j];

             s.grades[j] = temporary;

         }

      }

    }

    summation = 0;

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

        summation = summation + s.grades[i];  

    }

    average = summation/3;

    return average;

}

void disp(Student *s){

   cout << s->name << endl;

   cout << s->id << endl;

   for (int i = 0; i<4; i++)

       cout << s->grades[i] << " ";

   cout << endl;

   cout << "Average :" << inputAvg(*s) << endl;

   

}

int main(){

  Student st;

  int ch;

  while(true){

      inputData(st);

      disp(&st);

      cout << " '1' to continue '0' to exit :";

      cin >> ch;

      if (ch == 0)

         break;      

  }

  return 0;

}

Element of python which is valid syntax patterns

Answers

Answer:

yes

Explanation:

Use the drop-down menus to complete the statements about using section breaks in a document.
The four section break options can be found in the Breaks menu under the tab.
To insert a section break and start the new section on a new page, you would choose
To insert a section break and start the new section on the same page, you could choose

Answers

Answer:

1. Layout

2. Next Page

3. Continuous

Explanation:

Edge 2020

Answer:

Layout

Next Page

Continuous

Explanation:

When should you try to photograph reflections on bodies of water?
A) A rainy day
B) A windy day
C) A calm day
D) A cold day

Its calm day- gradpoint

Answers

Answer:

A calm day

Explanation:

you can't see temperature in a photo the water is not calm on a windy day and won't really reflect. And I really don't think some one would bring out expensive equipment in the rain to take a photo so C makes sense.

Answer:

all of them or good days it's just what you feel like on the day

Explanation:

Assuming that the actual process ids of the parent and child process are 2600 and 2650 respectively, what will be printed out at lines A, B, C, D, E, and F? Be sure to explain your answers. int main() { pid_t x, y; int value = 90; value += 30; /* fork a child process */ x = fork(); if (x < 0) { /* error occurred */ fprintf(stderr,"Fork failed"); return(1); } else if (x == 0) { /* child process */ y = getpid(); printf("child: x = %d",x); /* A */ printf("child: y = %d",y); /* B */ value += 20; printf("child: value = %d\n", value); /* C */ exit(0); } else { /* parent process */ y= getpid(); printf("parent: x = %d",x); /* D */ printf("parent: y = %d",y); /* E */ wait(NULL); printf("parent: value = %d\n", value); /* F */ } }

Answers

Answer:

Output explanation to the given code can be defined as follows:

Explanation:

In A the output is 0 , It will return fork value of the child process that is 0. so, 0 is printed during child process.  

In B the output is 2650 , in which the getpid() method returns the child process id  value that is 2650.  

In C the output is 140, As it is declared in key, all process have their own "value" copies. 20 are inserted during childhood, so 140 are written.  

In D the output is 2650, its fork() method returns the child ID to the parent process. so the value 2650 is printed.  

In E the output is 2600, Its getpid() method will returns parent process id  that is equal to 2600.  

In F the output is 120 Since the value is declared in primary, all process so their own "value" copies. 120 will be printed during process.

Why are passive readers most likely to have difficulty focusing on a text?

They use too many strategies.
They do too many things at once.
They prefer re-reading for meaning.
They lack interest in comprehension.

Answers

Answer:

Its b on edgynuity

Explanation:

trust me

Answer:he is right it’s B

Explanation:

Write a method to add/subtract two matrices. The header of the method is as follows:

public static double[][] addMatrix(double[][] a, double[][] b or public static double[][] subtractMatrix(double[][] a, double[][] b

In order to be add/subtract, the two matrices must have the same dimensions and the same or compatible types of elements.

Answers

Answer: A

Explanation:

What's the answer for 1 and 2

Answers

Answer:

volume??????? 1

select a ??????? 2

Explanation:

11. Which of these types of programa is bothersome but not necessarily dangerous?
A Worm
B. Adware
C. Virus
D. Trojan

Answers

Answer:

Virus

Explanation:

Your answer should be C. Virus

What is the purpose of technology?

Answers

Answer:  In general, when technology attempts to solve problems of matter, energy, space, or time, it is successful.

Explanation:  When it attempts to solve human problems of the mind, communication, ability, etc.

Lucas is taking an algebra class with many detailed steps. Which note-taking method would be best for this class?

charting
outlining
mapping
multiplying

Answers

Answer:

outlining

I really do hope this works !

Answer:

Hello!

The answer to your question is B. Outlining

Hope this helps!

Harry is undertaking a digital photography course as the college and wants to
complete and submit an assignment from home
His assignment will include documents and photographs that are currently stored
on his laptop, smartphone and digital camer
He will submit his work using the college VPN. His tutor will download and assess
the work
Draw a diagram to show the integration of systems that could be used in this
process.
The diagram should include
- devices and systems that can be used
devices to be connected and the connection type's used
the flow of data through the system
annotations indicating the information and data to be passed between the
systems/devices.
(10)

Answers

C. Unconventionally yes it will break down the system potentially causing a virus

Networks can be classified by geographical scope as PANs, , and WANs. The cables and signals used to transport data from one network device to another are a communication . Wired channels include twisted pair wires, cables used for cable television, and -optic cables used for high-capacity trunk lines. Wireless channels use signals and microwaves. Government agencies regulate some wireless . The transmission capacity of a channel is referred to as . Channels that are capable of moving at least 25 Mbps are classified as . Networks can be configured in various , such as star, mesh, point-to-point, or bus. Any device in a network is referred to as a(n) . Data equipment includes computers. Data equipment includes modems and routers. Additional DCEs include hubs, switches, bridges, repeaters, and access points. Networks use physical, transport, and arrival communication to set the rules for efficiently transmitting data and handling errors.

Answers

Answer:

1. LANs.

2. Channel.

3. Coaxial; fiber

4. RF; Channels.

5. Bandwidth.

6. Broadband.

7. Topologies.

8. Node.

9. Terminal.

10. Communication.

11. WAP.

12. Protocols.

Explanation:

1. Networks can be classified by geographical scope as PANs, LANs, and WANs.

2. The cables and signals used to transport data from one network device to another are a communication channel.

3. Wired channels include twisted pair wires, coaxial cables used for cable television, and fiber-optic cables used for high-capacity trunk lines.

4. Wireless channels use RF signals and microwaves. Government agencies regulate some wireless channels.

5. The transmission capacity of a channel is referred to as bandwidth.

6. Channels that are capable of moving at least 25 Mbps are classified as broadband.

7. Networks can be configured in various topologies, such as star, mesh, point-to-point, or bus.

8. Any device in a network is referred to as a node.

9. Data terminal equipment includes computers.

10. Data communication equipment includes modems and routers.

11. Additional DCEs include hubs, switches, bridges, repeaters, and WAP access points.

12. Networks use physical, transport, and arrival communication protocols to set the rules for efficiently transmitting data and handling errors.

Which one of the following is the most appropriate explanation of photoplethysmography?

Answers

Photoplethysmography a simple optical technique used to detect volumetric changes in blood in the peripheral circulation.

What is photoplethysmography?

Photoplethysmography is a technique used in signal analysis and application.

This instrument is a simple optical technique used to detect volumetric changes in blood in the peripheral circulation.

This technique provides valuable information related to our cardiovascular system

learn more on photoplethysmography here; https://brainly.com/question/25770607

why do we buy new asset​

Answers

Your question is too vauge, what do you mean exactly in what terms because you aimed this to to computer and technology, In business terms asset is something that brings in money or brings a positive impact. A form of asset can be stocks, crypto, NFTs, real estate... If you own one of these you own an asset, its as simple as that.

write the steps for renaming an existing folder​

Answers

Answer:

Rename a file or folder

Explanation:

1.Right-click on the item and select Rename, or select the file and press F2 .

2.Type the new name and press Enter or click Rename.

Answer:IT IS VERY EASY.RIGHT CLICK ON THE EXISTING FOLDER .SELECT RENAME.FOR SHORTCUT PRESS F2.

Write a program (Console or GUI) that determines the change to be dispensed from a vending machine. An item in the machine can cost between 25 cents and 1 dollar, in 5-cent increments (25, 30, 35,…,95, 100), and the machine accepts only a single dollar bill to pay for the item. For example, a possible sample dialog might be the following:

Output: Enter price of item (from 25 cents to a dollar, in 5-cent increments):

45 You bought an item for 45 cents and gave me a dollar, so your change is 2 quarters, 0 dimes, and

Answers

Answer:

Here is the JAVA program:

import java.util.Scanner;  //to accept input from user

public class Main {   //class name

  public static void main(String[] args) {  //start of main function

Scanner input =new Scanner(System.in);  // creates Scanner class object

int amount, quarters, dimes, nickels, pennies,change;   //declare variables

System.out.println("Enter the price of the(from 25 cents to a dollar, in 5-cent increments): ");  //prompts user to enter the price

amount=input.nextInt();   //reads amount from user

change= 100-amount;   //computes change

System.out.println("You bought an item for " + amount+" cents and gave me a dollar, so your change is :");  

quarters=change/25;  //computes quarters

change=change%25;  //computes quarter remaining

if(quarters == 1)   // if quarter is equal to 1

System.out.println(quarters+ " quarter");   //prints quarter value in singular

else if (quarters>1)   // if value of quarters is greater than 1

System.out.println(quarters+" quarters");     //prints plural quarters value

dimes=change/10;  //computes dimes

if(dimes == 1)   // if value of dime is equal to 1

System.out.println(dimes+ " dime");   //prints single value of dimes

else if (dimes>1)   //if value of dimes is greater than 1

System.out.println(dimes+" dimes");  //prints plural value of dimes

change=change%10;   //computes dimes remaining

nickels=change/5;  //computes nickels

if(nickels == 1)   //if value of nickels is equal to 1

System.out.println(nickels+ " nickel");   //prints single value of nickels

else if (nickels>1)   //if value of nickels is greater than 1

System.out.println(nickels+" nickels");   //prints plural value of nickels

change=change%5;    //computes nickels remaining

pennies=change;  //computes pennies

if(pennies == 1)   //if value of pennies is equal to 1

System.out.println(pennies+ " penny");   //prints single value of pennies

else if (pennies>1)    //if value of pennies is greater than 1

System.out.println(pennies+" pennies");     } }  //prints plural value of pennies

Explanation:

I will explain the program with an example:  

Suppose amount= 75  

Then change = 100 - amount= 100 - 75 = 25  

change = 25  

quarters = change/25 = 25/25 = 1  

quarters = 1  

change = change % 25 = 25%25 = 0  

dimes = 0/10 = 0  

Now all other values are 0.  

Now the following line is printed on screen:  

You bought an item for 75 cents and gave me a dollar. Your change is:  

Now program moves to if part  

if quarters == 1  

This is true because value of quarter is 1  

sot "quarter"   is displayed with the value of quarters

Now the following line is printed on screen:  

1 quarter  

So the complete output of the program is:  

You bought an item for 75 cents and gave me a dollar. Your change is:  

1 quarter

Given that an integer variable i and a floating-point variable f have already been declared and given values: Write a statement in C that displays the values of i and f to standard output in the following format: i=value-of-i f=value-of-f

Two Examples:
Example 1: if the values of i and f were 25 and 12.34 respectively, the output would be: i=25 f=12.34
Example 2: if the values of i and f's value were 703 and 3.14159, (respectively) the output would be: i=703 f=3.14159

Answers

Answer:

Follows are the given statement to this question:

printf("i=%d f=%f", i, f);//print value

Explanation:

The full code to the given question:

code:

#include <stdio.h>//defining header file

int main()// main method

{

   int i;//declaring integer variable

   float f;//declaring float variable

   i=25; //assign integer value

   f=12.34;//assign float value

   printf("i=%d f=%f", i, f);//print value

   i=703;//assign integer value

   f=3.14159;//assign float value

   printf("\n");//for line break

   printf("i=%d f=%f", i, f);//print value

   return 0;

}

Output:

i=25 f=12.340000

i=703 f=3.141590

In the above-given code, the two variable "i and f" is declared, that holds integer and floating-point value in its respective variable and use the print method, to print "i and f" variables value.  

the measurement is taken around the biggest part of the arm where the sleeve ends​

A. Arm circumference
B. Sleeve length
C. Armhole
D. Bust

Answers

Answer:

A. Arm circumference

Explanation:

The arm circumference is the measurement that goes around your arm at the biggest part of it which would be where the biceps forms, that is where normally our short sleeve clothing ends and that is a measure to be able to fit clothes properly.

It is a measure often in the midpoint between the elbow and the shoulder and it is often used to see the nutritional status of a person.

Other Questions
3x + 18y = 1 what is the slope intercept form? a competition between a given substance and its dissolved species is ? new styles that the composer pioneeredThe composer is Igor Stravinsky A bacteriologist estimates that there are 5.210^4 bacteria growing in each of 20 petri dishes. About how many bacteria in total are growing in the petri dishes? Express your answer in scientific notation Molly bought 4.25 pounds of fish for $10.20. What is her unit rate (cost per pound)? Why was protecting individual freedom so important to the framers? The test scores for the chapter 5 test in algebra I were: 75, 95, 90, 95, 60, 95, 75, 95, 90Question:a. find the mean, median, mode, and range of the datab. Which measure best describes the set of data? Why?c. if test scores of 65 and 75 were added to the set, what would happen to the mean? How did colonist react to the Sugar Act of 1764? what is 10^4 divided by 10^19 =? largest reservoir of the water on the earth Now consider a different situation. Payday loans are a type of loan where you can get money tor a future paycheck, typically two weeks in advance. Atypical payday loan Service might charge $15 for a loan against a paycheck you will receive in wo weeks. The interest rate is 10% of the paycheck Over that two-week period. Given this information, which variableS nthe interest formula are known? Develop a formula that Will solve for the unknown variable: what is 11+11=a. 22b. windowc. too hardd. pineapple aPpLe PeN write the following expression in exponential form 4.5 x 4.5 x 4.5 x 4.5 x 4.5 x 4.5 x 4.5PLS HELPPPPPPP Dr. Jenkins is conducting a research study at her institution. She asks participants to match numbers on their keyboard with symbols that they see on the computer screen as quickly as possible. Dr. Jenkins is likely measuring complete the sentances with who whose which where1 the girl ___ is wearing a nice white dress is my friends niece.2 the room ___ the meeting is going to be held is being aired and tidied thoroughly. who created this beautiful art piece? 7780.05 = 28.25 x 13.5 x h . what is the height A man wearing a black suit, black hat, and red tie. A green apple is covering his face. Which of the following statement(s) is/are true about the work of art above? a. The apple is thought to symbolize the apple eaten by Adam in the Bible, largely based on the title, The Son of Man. B. Many who view this piece feel uncomfortable about the image, because many can relate to this image and the sense of having temptation in front of us. C. One theory about this painting is that it represents the temptations always directly facing mankind, no matter what the time or space. D. All of the above are true. Please select the best answer from the choices provided A B C D. \lim_{n \to \infty} a_n \int\limits^a_b {x} \, dx \left \{ {{y=2} \atop {x=2}} \right. \leq \\ x^{2} \sqrt{x} \lim_{n \to \infty} a_n \left[\begin{array}{ccc}1&2&3\\4&5&6\\7&8&9\end{array}\right] \sqrt[n]{x} \neq \lim_{n \to \infty} a_n if you can solve this ill make you brainliest According to the information in both texts, how did the Louisiana purchase benefit the United States?A. By securing the Mississippi River and the Port of New Orleans to open the door to westward expansionB. By strengthening the nation's ally, FranceC. By making President Jefferson happy that the United States had more farm landD. By showing the growing tension between slave and free states over whether new states would permit slavery