MIS Midterm Flashcards
(24 cards)
How many cells in Excel are included in the range A2:A6?
5
A pivot table in Excel allows the user to place columns of the original worksheet into all of the following categories except?
Formulas
In math, the absolute value of a number is the non-negative value of the number. For example, the absolute value of -3 is 3 and the absolute value of 4 is still 4. Which of the following Excel formulas finds the absolute value of the number in cell A1?
=IF(A1 > 0, A1, -A1)
Which of the following statements is correct?
An Excel workbook may contain multiple spreadsheets.
The arithmetic mean of a range of cells is found by using which function?
AVERAGE
What is the first step that should be taken when creating a chart?
selecting the range of cells that contain the data the chart will use
What is the value of the formula: =IF(A3<B3, IF(A3<C3, “Small”, “Medium”), “Large”)
Small
What is the value of the formula: =SUMIF(B1:B3, “>” & 3, C1:C3)
8
Suppose the formula = MAX(A1:A4, A$1:D1, D:D) is entered into cell E1. What value will be calculated by Excel in the cell E1?
5
Suppose the formula from the previous question was copied from E1 and pasted into F3. What value will be calculated by Excel in the cell F3?
7
Revenue Calculation
= Price*units sold
COGS
=Cost per Unit * Units sold
Gross Profit
=Revenue - COGS
Current total profit
=sum of all gross profit
Best Case profit
= Best case revenue - best case COGS
Best case Total Profit
= sum of best-case profits
Worst Case Profit
=Worst case revenue - worst case cogs
worst case total profit
= sum of worst-case profits
Find the grade
IF(Average >= 90, “A+”,
IF(Average >= 80, “A”,
IF(Average >= 70, “B”,
IF(Average >= 60, “C”, “F”))))
calculate gpa
=VLOOKUP(Grade, $G$16:$H$20, 2, FALSE)
Pass or fail
=IF(MIN(B2:D2) < 60, “Fail”, “Pass”)
Number of students with average >=80
=COUNTIF(E2:E5, “>=80”)
Total average marks for students with science >=80
=AVERAGEIF(C2:C5, “>=80”, E2:E5)
Current class average
Average of All Student Averages