Unit 7: MS Excel - Practice Quiz

DCAP101 60 Questions
0 Correct 0 Wrong 60 Left
0/60

1 Which part of the Excel window displays the contents or formula of the active cell?

MS Excel environment Easy
A. Status Bar
B. Title Bar
C. Formula Bar
D. Scroll Bar

2 What is the horizontal group of commands and tabs at the top of Excel called?

MS Excel environment Easy
A. Name Box
B. Status Bar
C. Worksheet
D. Ribbon

3 Which command creates a new blank workbook in Excel?

Creating workbooks Easy
A. File > New
B. File > Print and select a previously saved workbook
C. File > Open
D. File > Save

4 Which keyboard shortcut creates a new workbook in Excel?

Creating workbooks Easy
A. Ctrl+O
B. Ctrl+N
C. Ctrl+S
D. Ctrl+P

5 Which keyboard shortcut opens an existing workbook?

Opening workbooks Easy
A. Ctrl+O
B. Ctrl+W
C. Ctrl+S
D. Ctrl+N

6 Which file extension is commonly used for a modern Excel workbook?

Opening workbooks Easy
A. .pptx
B. .txt, which is mainly used for unformatted plain-text documents
C. .docx
D. .xlsx

7 Which keyboard shortcut saves the current Excel workbook?

Saving workbooks Easy
A. Ctrl+N
B. Ctrl+O
C. Ctrl+P
D. Ctrl+S

8 Which command lets you save a workbook with a different name?

Saving workbooks Easy
A. Save As
B. Quick Print
C. Close
D. Page Setup

9 What does the cell range A1:A5 include?

Range of cells Easy
A. Only cells A1 and A5
B. Cells A1 through E1
C. Every cell in columns A through E and rows 1 through 5
D. Cells A1 through A5

10 Which symbol is used between the first and last cell references in a continuous range?

Range of cells Easy
A. Hyphen (-)
B. Comma (,)
C. Semicolon (;)
D. Colon (:)

11 Which formatting option makes text appear darker and thicker?

Formatting cells Easy
A. Bold
B. Underline
C. Italic
D. Wrap Text

12 Which number format is most suitable for displaying money values?

Formatting cells Easy
A. Currency
B. Date
C. General format with several decimal places and no currency symbol
D. Percentage

13 Which Excel function adds a group of numbers?

Mathematical functions Easy
A. MAX
B. MIN
C. SUM
D. AVERAGE

14 Which formula calculates the average of the values in cells B1 through B5?

Mathematical functions Easy
A. =SUM(B1:B5)
B. =COUNT(B1:B5)
C. =AVERAGE(B1:B5)
D. =MAX(B1:B5)

15 Which Excel function returns one value when a condition is true and another value when it is false?

Logical functions Easy
A. SUM
B. IF
C. ROUND
D. NOW

16 What does the AND function return when all its conditions are true?

Logical functions Easy
A. The total number of conditions included in the formula
B. TRUE
C. ZERO
D. FALSE

17 Which Excel function returns the current date?

Date and time functions Easy
A. NOW()
B. DATE()
C. TIME()
D. TODAY()

18 Which Excel function returns both the current date and current time?

Date and time functions Easy
A. MONTH()
B. NOW()
C. DAY()
D. TODAY()

19 Which function does the AutoSum command usually insert?

AutoSum Easy
A. AVERAGE
B. SUM
C. PRODUCT
D. COUNT

20 Which symbol commonly represents the AutoSum command in Excel?

AutoSum Easy
A. An equals sign followed by a cell reference and a colon
B. Percent (%)
C. Dollar ($)
D. Sigma (Σ)

21 After selecting several numerical cells, you want to view their Sum, Average, and Count without entering a formula. Which part of the Excel environment should you use?

MS Excel environment Medium
A. The Name Box
B. The Status Bar
C. The Quick Access Toolbar
D. The Formula Bar

22 You need to create a new monthly budget workbook with predefined headings, formulas, and formatting. What is the most efficient method?

Creating workbooks Medium
A. Create a blank workbook and manually reproduce every heading, formula, style, and layout used in a standard budget.
B. Choose File > Open, then select any existing spreadsheet.
C. Choose File > New, then select a monthly budget template.
D. Create a blank workbook and enter only the column headings.

23 A workbook listed under Recent was moved to a different folder, so its recent link no longer works. How should you open it?

Opening workbooks Medium
A. Keep selecting the broken Recent link until Excel automatically searches every drive and restores the original path.
B. Choose File > Save As and enter the workbook's old filename.
C. Choose File > New and search for the workbook by filename.
D. Choose File > Open > Browse and locate it in the new folder.

24 You edited Sales.xlsx but want to keep the original unchanged and store the edited version as Sales_Updated.xlsx. Which command should you use?

Saving workbooks Medium
A. Use Open and enter the new filename.
B. Use Save As and enter the new filename.
C. Use Print to create a renamed version while retaining all workbook formulas and worksheets.
D. Use Save and close the existing workbook.

25 How many cells are included in the range B2:F6?

Range of cells Medium
A. 20 cells
B. 30 cells
C. 25 cells
D. 35 cells

26 You want to select the two nonadjacent ranges A2:A8 and D2:D8. Which method should you use?

Range of cells Medium
A. Select the first range, open the Formula Bar, and type the address of the second range without using a selection key.
B. Select the first range, hold Enter, and select the second range.
C. Select the first range, hold Ctrl, and select the second range.
D. Select the first range, hold Tab, and select the second range.

27 A cell contains the number 42, but it must appear as 00042 while remaining numeric. Which number format should be applied?

Formatting cells Medium
A. The date format ddddd
B. The percentage format 0.00%
C. A text conversion that permanently replaces the numeric value with five separately entered characters
D. The custom format 00000

28 Cell A1 contains 0.25. What will it display when the Percentage format with zero decimal places is applied?

Formatting cells Medium
A. 25%
B. 0%
C. 2%
D. 250%

29 Cells A1:A4 contain 10, a blank cell, the text N/A, and 20. What result will =SUM(A1:A4) return?

Mathematical functions Medium
A. 30
B. 20
C. 40
D. #VALUE!

30 What is the result of the Excel formula =ABS(-12)+SQRT(16)?

Mathematical functions Medium
A. 20
B. 16
C. 28
D. 8

31 What will =ROUND(12.345,2) return?

Mathematical functions Medium
A. 12.30
B. 12.35
C. 12.40
D. 12.34

32 Cell B2 contains a student's score. Which formula displays Pass for a score of at least 50 and Fail otherwise?

Logical functions Medium
A. =IF(B2>50,"Fail","Pass")
B. =IF(B2>=50,"Pass","Fail")
C. =IF(B2<=50,"Pass","Fail")
D. =IF(B2=50,"Fail","Pass")

33 An employee receives a bonus only if sales in B2 are at least 10000 and attendance in C2 is at least 90%. Which formula correctly returns Bonus or No Bonus?

Logical functions Medium
A. =IF(AND(B2<=10000,C2<=90%),"Bonus","No Bonus")
B. =IF(OR(B2>=10000,C2>=90%),"Bonus","No Bonus")
C. =IF(B2>=10000,"Bonus",IF(C2>=90%,"Bonus","No Bonus")), which awards the bonus when either separate test succeeds
D. =IF(AND(B2>=10000,C2>=90%),"Bonus","No Bonus")

34 A customer receives a discount if membership in C2 is Gold or purchases in D2 are at least 1000. Which formula is correct?

Logical functions Medium
A. =IF(OR(C2="Gold",D2<=1000),"Discount","No Discount")
B. =IF(AND(C2="Gold",D2>=1000),"Discount","No Discount")
C. =IF(OR(C2="Gold",D2>=1000),"Discount","No Discount")
D. =IF(AND(C2<>"Gold",D2<1000),"Discount","No Discount")

35 Assuming the result is formatted as a date, what does =DATE(2025,2,28)+1 return?

Date and time functions Medium
A. January 1, 2026
B. March 1, 2025
C. March 2, 2025
D. February 29, 2025

36 What type of value does the formula =NOW() return?

Date and time functions Medium
A. The current workbook filename
B. The current date only
C. The current time only, with the date permanently excluded from the stored value
D. The current date and current time

37 What result does =DATE(2025,3,15)-DATE(2025,3,10) return when the cell uses General format?

Date and time functions Medium
A. 5
B. 10
C. 4
D. 15

38 Cells B2:B6 contain numbers, and B7 is selected. What formula will AutoSum normally insert in B7?

AutoSum Medium
A. =SUM(B2:B7)
B. =SUM(B2:B6)
C. =B2+B3+B4+B5+B6+B7, including the result cell itself as part of a manually constructed addition formula
D. =SUM(B1:B6)

39 Cells B2:D6 contain three columns of values. If you select B7:D7 and click AutoSum, which formulas are normally inserted?

AutoSum Medium
A. =SUM(B2:D2), =SUM(B3:D3), =SUM(B4:D4)
B. =SUM(B2:B6), =SUM(C2:C6), =SUM(D2:D6)
C. =AVERAGE(B2:B6), =AVERAGE(C2:C6), =AVERAGE(D2:D6)
D. =SUM(B2:B6), =SUM(B2:B6), =SUM(B2:B6)

40 A workbook contains formulas, cell formatting, charts, and three worksheets. Which file type should you choose to preserve these features?

Saving workbooks Medium
A. Comma Separated Values (.csv)
B. A CSV file that stores all worksheets, formulas, chart objects, and formatting in one comma-separated document
C. Excel Workbook (.xlsx)
D. Plain Text File (.txt)

41 Several workbooks are open, and the active workbook contains multiple worksheets. Which shortcut pair first moves to the next worksheet in the current workbook and then moves to the next open workbook?

MS Excel environment Hard
A. Ctrl+Page Down, then Ctrl+Tab
B. Ctrl+Tab, then Ctrl+Page Down
C. Alt+Page Down, then Ctrl+Tab
D. Ctrl+Page Down, then Alt+Tab

42 After a keyboard shortcut is pressed, every formula cell displays its formula instead of its calculated result, but the underlying calculations remain unchanged. What most likely occurred?

MS Excel environment Hard
A. Show Formulas was toggled on
B. Workbook protection was activated
C. Manual calculation mode was enabled
D. The Formula Bar was expanded

43 A department needs to create many macro-free workbooks containing the same formulas, styles, and worksheet structure while preventing accidental changes to the master design. Which approach is most appropriate?

Creating workbooks Hard
A. Save the master as .xltx and create files from it
B. Save the master as .xlsm and disable all macros
C. Save the master as .csv and reopen it for each user
D. Save the master as .xlsx and repeatedly overwrite it

44 While working in a workbook containing three worksheets, a user presses Shift+F11 and then Ctrl+N. What is the expected result?

Creating workbooks Hard
A. Two new blank workbooks are opened in Excel
B. Two worksheets are inserted in the current workbook
C. A workbook opens, then a worksheet is inserted there
D. A worksheet is inserted, then a new workbook opens

45 An .xlsx workbook downloaded from the internet opens with editing disabled and a security warning, although no password was assigned. What is the most likely cause and appropriate action if the file is trusted?

Opening workbooks Hard
A. It has structure protection; select Allow Edit Ranges
B. It is read-only recommended; select Enable Content
C. It is in Protected View; select Enable Editing
D. It is marked final; select Unprotect Workbook

46 A CSV file contains identifiers such as 001234 and 03-04, which must remain literal text. Which opening method best prevents Excel from automatically removing zeros or converting values to dates?

Opening workbooks Hard
A. Double-click the CSV and apply Text format afterward
B. Open the CSV and immediately switch to Formula View
C. Rename the CSV extension to .xlsx before opening
D. Import with From Text/CSV and set columns to Text

47 A workbook containing VBA code is saved as .xlsm. The user then uses Save As, selects .xlsx, accepts the feature-loss warning, and closes the new file. Which statement is correct?

Saving workbooks Hard
A. The .xlsx loses VBA, while the .xlsm remains intact
B. Both files retain VBA because the workbook was macro-enabled
C. Both files lose VBA because Save As updates the source
D. The .xlsx retains VBA, but the macros are disabled

48 A workbook has three worksheets, formulas, cell colors, and custom number formats. It is saved as CSV while the second worksheet is active. What is retained in the CSV?

Saving workbooks Hard
A. Only the active sheet's exported values without workbook structure
B. Only formula expressions from every worksheet in the workbook
C. All worksheets, formulas, and visible cell formatting
D. All active-sheet formulas with their styles and named ranges

49 Cell B2 contains the formula =$A2*B$1. If it is copied to D4, which formula appears in D4?

Range of cells Hard
A. =$A2*D$1
B. =$C4*D$3
C. =$A4*B$1
D. =$A4*D$1

50 What value is returned by =ROWS(B2:D6 C4:F8)*COLUMNS(B2:D6 C4:F8)?

Range of cells Hard
A. 8
B. 6
C. 12
D. 4

51 A cell contains -12.3 and uses the custom number format 0.00;[Red](0.00);-;@. How will the value be displayed?

Formatting cells Hard
A. - in the default color
B. 12.30 in red
C. -12.30 in the default color
D. (12.30) in red

52 Cell A1 contains the numeric value 0.256 and is formatted as 0%, so it displays 26%. Cell B1 contains =A1*100 and uses General format. What does B1 display?

Formatting cells Hard
A. 26
B. 25.6
C. 2600
D. 0.256

53 Cells A1:A4 contain, respectively, the number 5, the text value "7", the logical value TRUE, and a blank. What does =SUM(A1:A4,"7",TRUE) return?

Mathematical functions Hard
A. 20
B. 12
C. 5
D. 13

54 What is the result of =ROUND(-250,-2)+ROUND(249,-2) in Excel?

Mathematical functions Hard
A. 0
B. -100
C. -200
D. 100

55 Cell A1 contains the formula ="", which returns an empty string. What does =IF(ISBLANK(A1),"A",IF(A1="","B","C")) return?

Logical functions Hard
A. A
B. #VALUE!
C. C
D. B

56 If A1=0 and B1=5, what does =IFERROR(IF(AND(A1<>0,B1/A1>2),"Yes","No"),"Error") return?

Logical functions Hard
A. Yes
B. No
C. FALSE
D. Error

57 Assuming the standard Excel date system, what date is returned by =DATE(2024,14,0)?

Date and time functions Hard
A. February 28, 2025
B. December 31, 2024
C. February 1, 2025
D. January 31, 2025

58 Cell A1 contains 23:30, and B1 contains 01:15 for the following day, but neither cell includes a date. If C1 uses the format [h]:mm, what does =MOD(B1-A1,1) display?

Date and time functions Hard
A. 1:45
B. 22:15
C. 23:45
D. 25:15

59 A numeric list has an active filter that hides several rows. When AutoSum is used beneath the filtered list, which behavior is normally intended?

AutoSum Hard
A. A SUBTOTAL formula excludes rows hidden by the filter
B. An AGGREGATE formula includes every row in the range
C. A SUM formula includes both visible and filtered-out rows
D. An AVERAGE formula calculates only the visible rows

60 Cells B2:D4 contain numbers, column A contains labels, and E2:E4 are empty. If E2:E4 are selected together and AutoSum is clicked, which formula is inserted into E3?

AutoSum Hard
A. =SUM(E2:E4)
B. =SUM(B2:B4)
C. =SUM(B2:D4)
D. =SUM(B3:D3)