• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/82

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

82 Cards in this Set

  • Front
  • Back
what is the meaning of this error message?
#####
Insufficient width in cell to display numerical data or formulas that result in a negative date/time
what is the meaning of this error message?
#NAME?
Unrecognized text in a formula
what is the meaning of this error message?
#N/A
No answer
what is the meaning of this error message?
#REF!
Invalid cell reference
what is the meaning of this error message?
#VALUE!
wrong argument type or operand
what is the meaning of this error message?
#NUM!
invalid numeric values in a formula or function
what is the meaning of this error message?
#DIV/0!
Division by zero
If you enter 1,149+25 in a cell exactly as shown (without an equal sign), what value would result?
1,149+25
If you enter =2+4*10 in a cell exactly as shown, what value would result?
42
List each of the following operations in order of precedence, from 1 to 4 (first to last)
-Multiplication/division
-parentheses
-addition/subtraction
-exponentiation
1. parentheses
2. exponentiation
3. multiplication/division
4. addition/subtraction
when writing formlas, why is it preferable to use cell references rather than typing in values?
It allows the user to easily update the spreadsheet without having to know exactly which formula or formulas contain the changed value
which formula would you write to add a range of numbers in cells A2:X2
=SUM(A2:X2)
which formula would you write to find the largest value in cells C2:C8
=MAX(C2:C8)
which formula would you write to find the smallest value in cells B2 through Z12
=MIN(B2:Z12)
which formula would you write to find the average value in cells C1 through C10, assuming blank cells will be ignored
=AVERAGE(C1:C10)
which formula would you write to find the total number of values listed in cells C1 through C10, excluding any that contain text
=COUNT(C1:C10)
what is the difference between the COUNT function and teh COUNTA function?
The COUNT function will count the number of components and ignore blank cells and cells with text. The COUNTA is similar, but does not ignore text cells
define syntax
Specifies the function name and order of the arguments in each function
define arguments
the inputs in a function
define algorithm
the rules of a function and how it is programmed to behave
What does $A$4 do?
Locks the cell and row
What does $A4 do?
Locks column A, but the row number will change as the formula is moved to different cells
What does A$4 do?
Locks row 4, but the column letter will change as the forumla is moved to different colums
What formula could you write to calculate the mean of the following data set: 2,5,4,3,1,2,7?
=AVERAGE(2,5,4,3,1,2,7)
What formula would you write to calculate the median in the set of data 2,5,4?
=MEDIAN(2,5,4)
what is the definition of standard deviation?
a measure of how widely the data values are dispersed from the mean
what does it mean if two data sets have the same means, but one stdev is 1.58 and another is 2.5?
the data set with the stdev 1.58 must have values much closer to the mean compared with the values of the stdev of 2.5
What algebraic expression could you use to determine the % increase for 2 values?
(New value-Old Value)/Old Value
Whatn using the increase decimal button on the toolbar, the precise value in the cell is modified. true or false?
False, the value is kept the same, excel just gives you the decimals
The formula =ROUND(345.43,0) results in what precise value?
345 (no decimals)
write a formula to round up 63.34% to the nearest percent
=ROUNDUP(63.34%,2)
What is a relational operator?
an operator that compares two values
what is the symbol for the greater than or equal to relational operator?
>=
what is the symbol for not equal to relational operator?
<>
write a formula using the COUNTIF function to determine the number of GM cars on a list (column A)
=countif(A1:A50,"GM")

=countif(cell criteria range, cell criteria)
write a formula to determine the number of cars that cost less than 20,000
=countif(X1:X10,"<20000")
write a formula to determine the total value of all ford cars
=sumif(A2:A10,"Ford",B2:B10)

(Col A= car type)
(Col B = Value)
What is a "what-if" analysis?
when you perform a what if analysis, you determine the outcome of changing one or more input values and evaluate the recalculated results.
what is the "goal seek" tool?
Allows you to specifiy the outcome you want and which input value you want to vary. Helps you reach a specified output (work backward)
write a formula to determine the value of the 3rd most expensive car
=Large(B2:B10,3)

(Col B= $$ car value)
(3 = 3rd largest value)
If each car is marked up between $50 and $250 what function could be used to randomly assign the amount to be added to the car price in this formula?
=B2+randbetween(50,250)
the formula =RAND() gives what result?
a random value between 0 and 1
what forumla could you write to average the values in cells A10 through A20, excluding blank cells, rounded to the nearest 10?
=ROUND(AVERAGE(A10:A20),2)
Write a formula to determine the average price of only ford vehicles.
=AVERAGEIF(A2:A10,"ford",B2:B10)

(ColA=car names)
(ColB=values)
write a formula to generate a random interger value between 10 and 20
=randbetween(10,20)
What are Tufte's 5 data graphics principles?
1. Above all else show the data
2. Maximize the data-ink ratio, within reason
3. Erase non-data-ink, within reason
4. Erase redundant data ink, within reason
5. Revise and edit
What does Tufte's first data graphic principle "Above all else show the data" mean?
It is a reminder not to clutter a chart by adding unnecessary illustration or decoration. everything needs to have a reason to be there.
What does Tufte's second data graphic principle "Maximize the data-ink ratio, within reason" mean?
refers to the portion of the ink that is devoted to displaying the data verses the portion of a graphic that can be removed without losing the data.
a good example would be using lines instead of columns to present data
What does Tufte's third data graphic principle "Erase non-data-ink, within reason" mean?
non-data-ink is a part of the chart that decorates more than informs.
What does tufte's fourth data graphic principle "erase redundant data ink" mean?
redundant data ink is ink that repeats information. for example, the use of a data table and lables on each point on a chart is redundant
What does tufte's last principle "revise and edit" mean?
charts can be improved by revision like writing can. often the best way to choose a chart is through trial and error.
How do sparklines differ from charts?
sparklines are word-sized charts or graphics that are embedded within the words, numbers, and images they represent. Placing them in the context of what they represent makes multiple comparisons of trends and patterns much easier.
What are the 3 steps involved in using the insert tab to create a chart?
1. select the data you want to display in the chart
2. click the insert tab
3. click a button in the charts group
what does it mean if a chart has a low data-ink ratio
a chart uses lots of ink to display a small amount of data
how do you change the chart type of an existing chart?
1. Select the chart you want to change
2. In the type group on the design tab, click change chart type
3. click the chart type you want to change to
4. click okay
What charting limits does excel have in terms of data points and series?
the number of data series and data points that excel can display in a chart is only limited by available computer memory and capacity
how many standard chart types and subtypes are available in excel?
11 standard chart types, 73 sub types
What are differences between a line chart and an X Y (scatter) chart?
Line charts plot numeric values on one axis and category lables on the other axis. Scatter charts compare pairs of numeric values on the x and y axes based on the value of the data.
What are the similarities between a line chart and an XY scatter chart?
They both display trends over time
When should you use a line chart?
Line charts are useful if the changes in the overall trend of the data needs to be emphasized.
when should you use a scatter XY chart?
when comparing sets of numerical data on both the x axis and y axis
what are the difference between data points in a line chart and an XY scatter chart?
Line chart plots data points along the y axis based on the value, but x axis based on position in the data (years)

Scatter XY charts plot both the y and x azis data as numeric values. sorts x values lowest to highest and plots them
what are the differences between a bar chart and a column chart?
bar charts compare values across categories in a horizontal orientation
Column charts compare values across categories in a vertical orientation
When should you use a bar chart? a column chart?
Bar charts would be helpful in noticing declining trendlines, where column charts would be useful in noticing a positive trendline
What is an area chart?
It combines the features of a line chart with a bar or column chart by filling in the area below the line and displaying the trend of values over time or categories.
when is it better to use an area chart instead of a column chart?
Area charts display trends over time. They can make reading data easier because a large number of columns can clutter up a chart. They are better to use to show data for longer periods of time
How do pie charts differ from doughnut charts?
Pie charts can show individual percentages, but only for one data series. Doughnut charts show the information contained in a pie chart for more than one series.
What is a potential problem using doughnut charts?
they can easily become confusing if too many data series are charted at once
When should you use a stacked line chart?
when trying to display a cumulative trend
when should you use a stacked column chart?
when you are looking to clearly show totals for a given category
when should you use a stacked area chart?
similar to the stacked line chart, these are good at showing a cummulative trend across data
How do stacked charts differ from regular charts?
Sstacked charts give you a slightly different perspective on the contribution that each category makes to the sum or whole
When should you use a 100% stacked line chart?
useful to show the trend of the percentage each value contributes over time or ordered categories.
when should you use a 100% stacked column chart?
when you have two or more data series and you want to emphasize the contributions to the whole, especially if the total is the same for each category. equivalent of multiple pie charts
When should you use a 100% stacked area chart?
display the trend of the percentage that each value contributes over time as a part of the total 100% (pie chart comparison)
what chart sub types are available for the stock chart in excel?
1. High-Low-Close
2. Open-High-Low-Close
3. Volume High-Low-Close
4. Volume Open-High-Low-Close
For the high-low-close chart, what does the vertical line and tip of the arrowhead represent?
Vertical line represents the range of lowest to highest stock prices for the time period

Tip of the arrow head represents the closing price for the time period
For the open-high-low-close chart, what do the vertical line, black box, white box and the top and bottom of the box represent?
Vertical line = range of lowest to highest stock prices

Black Box = Decrease in stock value

White Box = increase in stock value

Top and bottom of the box= the opening and closing prices
How does a radar chart differ from other charts?
They combine the comparison features across categories that area charts provide, with the comparison of the relative contribution to the whole that pie charts provide
define a bubble chart
Allow 3D data to be plotted on a 2D 2 axis graph. the x and y axes are numeric rather than one containing categories. the 3rd dimension is also numeric and is represented by varying the size of the data point. the larger the bubble, the larger the value.
what type of data is suitable for putting on a bubble chart?
when you have 3 sets of data that need to be displayed in one chart
when should you use a dashboard chart?
when you want a quick visual summary of data