I want to know the basic of Excel

Answers

Answer 1

Answer:

Use Pivot Tables to recognize and make sense of data.

Add more than one row or column.

Use filters to simplify your data.

Remove duplicate data points or sets.

Transpose rows into columns.

Split up text information between columns.

Use these formulas for simple calculations.

Get the average of numbers in your cells.


Related Questions

What are some examples and non-examples of digital security?

Answers

Answer:

Devices such as a smart card-based USB token, the SIM card in your cell phone, the secure chip in your contactless payment card or an ePassport are digital security devices

Write a Python class that inputs a polynomial in standard algebraic notation and outputs the first derivative of that polynomial. Both the inputted polynomial and its derivative should be represented as strings.

Answers

Answer:Python code: This will work for equations that have "+" symbol .If you want to change the code to work for "-" also then change the code accordingly. import re def readEquation(eq): terms = eq.s

Explanation:

You are responsible for a rail convoy of goods consisting of several boxcars. You start the train and after a few minutes you realize that some boxcars are overloaded and weigh too heavily on the rails while others are dangerously light. So you decide to stop the train and spread the weight more evenly so that all the boxcars have exactly the same weight (without changing the total weight). For that you write a program which helps you in the distribution of the weight.
Your program should first read the number of cars to be weighed (integer) followed by the weights of the cars (doubles). Then your program should calculate and display how much weight to add or subtract from each car such that every car has the same weight. The total weight of all of the cars should not change. These additions and subtractions of weights should be displayed with one decimal place. You may assume that there are no more than 50 boxcars.
Example 1
In this example, there are 5 boxcars with different weights summing to 110.0. The ouput shows that we are modifying all the boxcars so that they each carry a weight of 22.0 (which makes a total of 110.0 for the entire train). So we remove 18.0 for the first boxcar, we add 10.0 for the second, we add 2.0 for the third, etc.
Input
5
40.0
12.0
20.0
5. 33.
0
Output
- 18.0
10.0
2.0
17.0
-11.0

Answers

Answer:

The program in C++ is as follows:

#include <iostream>

#include <iomanip>

using namespace std;

int main(){

   int cars;

   cin>>cars;

   double weights[cars];

   double total = 0;

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

       cin>>weights[i];

       total+=weights[i];    }

   double avg = total/cars;

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

       cout<<fixed<<setprecision(1)<<avg-weights[i]<<endl;    }

   return 0;

}

Explanation:

This declares the number of cars as integers

   int cars;

This gets input for the number of cars

   cin>>cars;

This declares the weight of the cars as an array of double datatype

   double weights[cars];

This initializes the total weights to 0

   double total = 0;

This iterates through the number of cars

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

This gets input for each weight

       cin>>weights[i];

This adds up the total weight

       total+=weights[i];    }

This calculates the average weights

   double avg = total/cars;

This iterates through the number of cars

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

This prints how much weight to be added or subtracted

       cout<<fixed<<setprecision(1)<<avg-weights[i]<<endl;    }

Note that common skills are listed toward the top, and less common skills are listed toward the bottom. According to O*NET, what are common skills needed by Secondary School Special Education Teachers? Check all that apply.

instructing
installation
learning strategies
repairing
active listening
technology design

Answers

Answer:

A. Instucting   C. Learning Strategies   E. Active Listening

Explanation:

Got it right on assignment

You will write code to manipulate strings using pointers but without using the string handling functions in string.h. Do not include string.h in your code. You will not get any points unless you use pointers throughout both parts.
You will read in two strings from a file cp4in_1.txt at a time (there will be 2n strings, and you will read them until EOF) and then do the following. You alternately take characters from the two strings and string them together and create a new string which you will store in a new string variable. You may assume that each string is no more than 20 characters long (not including the null terminator), but can be far less. You must use pointers. You may store each string in an array, but are not allowed to treat the string as a character array in the sense that you may not have statements like c[i] = a[i], but rather *c *a is allowed. You will not get any points unless you use pointers.
Example:
Input file output file
ABCDE APBQCRDSETFG
PQRSTFG arrow abcdefghijklmnopgrstuvwxyz
acegikmoqsuwyz
bdfhjlnprtvx

Answers

Solution :

#include [tex]$< \text{stdio.h} >$[/tex]

#include [tex]$< \text{stdlib.h} >$[/tex]

int [tex]$\text{main}()$[/tex]

{

[tex]$\text{FILE}$[/tex] *fp;

[tex]$\text{fp}$[/tex]=fopen("cp4in_1.txt","r");

char ch;

//while(1)

//{

while(!feof(fp))

{

char *[tex]$\text{s1}$[/tex],*[tex]$\text{s2}$[/tex],*[tex]$\text{s3}$[/tex];

[tex]$\text{s1}$[/tex] = (char*) [tex]$\text{malloc}$[/tex]([tex]$20$[/tex] * [tex]$\text{sizeof}$[/tex](char));

[tex]$\text{s2}$[/tex] = (char*) [tex]$\text{malloc}$[/tex]([tex]$20$[/tex] * [tex]$\text{sizeof}$[/tex](char));

[tex]$\text{s3}$[/tex] = (char*) [tex]$\text{malloc}$[/tex]([tex]$40$[/tex] * [tex]$\text{sizeof}$[/tex](char));

[tex]$\text{int i}$[/tex]=0,j=0,x,y;

while(1)

{

ch=getc(fp);

if(ch=='\n')

break;

*(s1+i)=ch;

i++;

}

while(1)

{

ch=getc(fp);

if(ch=='\n')

break;

*(s2+j)=ch;

j++;

}

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

{

*(s3+x)=*(s1+x);

}

for(y=0;y<j;x++,y++)

{

*(s3+x)=*(s2+y);

}

for(x=0;x<i+j;x++)

{

printf("%c",*(s3+x));

}

printf("\n");

getc(fp);

}

}

Parts of a computer software

Answers

Answer:

I think application software

utility software

networking software

HURRY- I’ll give 15 points and brainliest answer!!
How do you insert text into a presentation??
By selecting text from the insert menu
By clicking in the task pane and entering text
By clicking in a placeholder and entering text
By drawing a text box clicking in it and entering text
(This answer is multiple select)

Answers

Answer:

the last one the drawing thingy:)))

Other Questions
how do I solve this?? number 8 Two dice are tossed. Find the probability of getting the sum of thedice equal to 4. (Hint: Draw a tree diagram of the possibilities oftwo tosses of a die, and then find the sum of the numbers oneach branch.) select the equation that is equivalent to (x+5)2 l Englehard purchases a slurry-based separator for the mining of clay that costs $700,000 and has an estimated useful life of 10 years, a MACRS-GDS property class of 7 years, and an estimated salvage value after 10 years of $75,000. It was fi nanced using a $200,000 down payment and a loan of $500,000 over a period of 5 years with interest at 10%. Loan payments are made in equal annual amounts (principal plus interest) over the 5 years. a. What is the amount of the MACRS-GDS depreciation taken in the 3rd year Economists argue that the pace of economic growth: Determines the size of the population of a nation over the long term. Determines the standard of life of a nation over the long term. Determines the military capability of a nation over the long term. Determines the unemployment rate of a nation over the long term. Determines the environmental health of a nation over the long term. HELP PLEASE WILL CROWN BRAINLIEST!!The temperature in Calgary at 9 a.m. was 23 C. By 11 a.m., it had warmed up by 8 C. By noon, it had warmed up by another 3 C. But by 2:00 p.m. it had cooled by 6 C. What was the temperature in Calgary at 2:00 p.m.? Michael runs 3.5 miles in 30 minutes. If he continues at this rate for 2 hours, determine his rate of change. You are a Muslim born and raised in Mindanao. You are a member of a commission tasked to resolve this issue in the Philippines. The goal is to create a proposal detailing and explaining how you would resolve this conflict. Identify the following foods whether it is Carbohydrates, Protein, Fats, Vitamins and Minerals.1.Green leafy vegetables2.Oatmeal3.Nuts4.Potatoes5.Berries6.Beefsteak7.Tomatoes8.Cakes9.Pasta10.Beans What is the correct equation for the breakdown of ozone? please answer quick IF YOU COULD HELP OUT THAT WOULD BE GREAT :) There is a bag with only red marbles and blue marbles. The probability of randomly choosing a red marble is 49. There are 32 red marbles in the bag and each is equally likely to be chosen.Work out how many marbles in total there must be. Find the volume of the cylinder in terms of x and to the nearest tenth Florida Seaside Oil Exploration Company is deciding whether to drill for oil off the northeast coast of Florida. The company estimates that the project would cost $4.24 million today. The firm estimates that once drilled, the oil will generate positive cash flows of $2.12 million a year at the end of each of the next four years. While the company is fairly confident about its cash flow forecast, it recognizes that if it waits two years, it would have more information about the local geology as well as the price of oil. Florida Seaside estimates that if it waits two years, the project would cost $4.59 million. Moreover, if it waits two years, there is a 85% chance that the cash flows would be $2.306 million a year for four years, and there is a 15% chance that the cash flows will be $0.705 million a year for four years. Assume that all cash flows are discounted at a 8% WACC. Will the company delay the project and wait until they have more information in a microscope never use the _____with ________when you are done Brainliest for correct answer asap Write the present participle for the following -ir stem-changing verbs.1. consenguir 2. pedir3. repetir4. seguir5. sentir6. servir7. venirpls help n a study to investigate whether vitamin C will prevent colds, 400 subjects are assigned at random to one of two groups. The experimental group takes a vitamin C tablet daily, while the control group takes a placebo. At the end of the experiment, the researchers calculate the difference between the percentage of subjects in the two groups who were free of colds. This difference is statistically significant (P=0.03) in favor of the vitamin C group. hello i need help with this thank you Amy pulls a spring with a spring constant k = 100 stretching it from its rest length of 0.10 m to 0.2