MIS Midterm Flashcards

(24 cards)

1
Q

How many cells in Excel are included in the range A2:A6?

A

5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A pivot table in Excel allows the user to place columns of the original worksheet into all of the following categories except?

A

Formulas

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

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?

A

=IF(A1 > 0, A1, -A1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which of the following statements is correct?

A

An Excel workbook may contain multiple spreadsheets.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The arithmetic mean of a range of cells is found by using which function?

A

AVERAGE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the first step that should be taken when creating a chart?

A

selecting the range of cells that contain the data the chart will use

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the value of the formula: =IF(A3<B3, IF(A3<C3, “Small”, “Medium”), “Large”)

A

Small

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the value of the formula: =SUMIF(B1:B3, “>” & 3, C1:C3)

A

8

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

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?

A

5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

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?

A

7

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Revenue Calculation

A

= Price*units sold

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

COGS

A

=Cost per Unit * Units sold

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Gross Profit

A

=Revenue - COGS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Current total profit

A

=sum of all gross profit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Best Case profit

A

= Best case revenue - best case COGS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Best case Total Profit

A

= sum of best-case profits

17
Q

Worst Case Profit

A

=Worst case revenue - worst case cogs

18
Q

worst case total profit

A

= sum of worst-case profits

19
Q

Find the grade

A

IF(Average >= 90, “A+”,
IF(Average >= 80, “A”,
IF(Average >= 70, “B”,
IF(Average >= 60, “C”, “F”))))

20
Q

calculate gpa

A

=VLOOKUP(Grade, $G$16:$H$20, 2, FALSE)

21
Q

Pass or fail

A

=IF(MIN(B2:D2) < 60, “Fail”, “Pass”)

22
Q

Number of students with average >=80

A

=COUNTIF(E2:E5, “>=80”)

23
Q

Total average marks for students with science >=80

A

=AVERAGEIF(C2:C5, “>=80”, E2:E5)

24
Q

Current class average

A

Average of All Student Averages