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. Formula Bar
B. Scroll Bar
C. Status Bar
D. Title Bar

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

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

3 Which command creates a new blank workbook in Excel?

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

4 Which keyboard shortcut creates a new workbook in Excel?

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

5 Which keyboard shortcut opens an existing workbook?

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

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

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

7 Which keyboard shortcut saves the current Excel workbook?

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

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. Cells A1 through A5
B. Only cells A1 and A5
C. Cells A1 through E1
D. Every cell in columns A through E and rows 1 through 5

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

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

11 Which formatting option makes text appear darker and thicker?

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

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

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

13 Which Excel function adds a group of numbers?

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

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

Mathematical functions Easy
A. =COUNT(B1:B5)
B. =AVERAGE(B1:B5)
C. =SUM(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. IF
B. ROUND
C. SUM
D. NOW

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

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

17 Which Excel function returns the current date?

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

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

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

19 Which function does the AutoSum command usually insert?

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

20 Which symbol commonly represents the AutoSum command in Excel?

AutoSum Easy
A. Percent (%)
B. An equals sign followed by a cell reference and a colon
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 Status Bar
B. The Name Box
C. The Formula Bar
D. The Quick Access Toolbar

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. Choose File > Open, then select any existing spreadsheet.
B. Create a blank workbook and enter only the column headings.
C. Choose File > New, then select a monthly budget template.
D. Create a blank workbook and manually reproduce every heading, formula, style, and layout used in a standard budget.

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 > Open > Browse and locate it in the new folder.
C. Choose File > New and search for the workbook by filename.
D. Choose File > Save As and enter the workbook's old filename.

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 Save As and enter the new filename.
B. Use Print to create a renamed version while retaining all workbook formulas and worksheets.
C. Use Save and close the existing workbook.
D. Use Open and enter the new filename.

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

Range of cells Medium
A. 20 cells
B. 35 cells
C. 30 cells
D. 25 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, hold Tab, and select the second range.
B. Select the first range, open the Formula Bar, and type the address of the second range without using a selection key.
C. Select the first range, hold Ctrl, and select the second range.
D. Select the first range, hold Enter, 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 percentage format 0.00%
B. A text conversion that permanently replaces the numeric value with five separately entered characters
C. The custom format 00000
D. The date format ddddd

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. 2%
C. 0%
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. 40
B. 20
C. 30
D. #VALUE!

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

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

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

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

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,"Pass","Fail")
B. =IF(B2=50,"Fail","Pass")
C. =IF(B2>50,"Fail","Pass")
D. =IF(B2>=50,"Pass","Fail")

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(AND(B2>=10000,C2>=90%),"Bonus","No Bonus")
D. =IF(B2>=10000,"Bonus",IF(C2>=90%,"Bonus","No Bonus")), which awards the bonus when either separate test succeeds

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(AND(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(OR(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 time only, with the date permanently excluded from the stored value
C. The current date and current time
D. The current date only

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. 4
B. 10
C. 5
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. =B2+B3+B4+B5+B6+B7, including the result cell itself as part of a manually constructed addition formula
C. =SUM(B2:B6)
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. =AVERAGE(B2:B6), =AVERAGE(C2:C6), =AVERAGE(D2:D6)
B. =SUM(B2:D2), =SUM(B3:D3), =SUM(B4:D4)
C. =SUM(B2:B6), =SUM(B2:B6), =SUM(B2:B6)
D. =SUM(B2:B6), =SUM(C2:C6), =SUM(D2:D6)

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. Plain Text File (.txt)
B. Comma Separated Values (.csv)
C. A CSV file that stores all worksheets, formulas, chart objects, and formatting in one comma-separated document
D. Excel Workbook (.xlsx)

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. Alt+Page Down, then Ctrl+Tab
B. Ctrl+Page Down, then Ctrl+Tab
C. Ctrl+Tab, then Ctrl+Page Down
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. Manual calculation mode was enabled
B. Workbook protection was activated
C. The Formula Bar was expanded
D. Show Formulas was toggled on

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 .csv and reopen it for each user
C. Save the master as .xlsx and repeatedly overwrite it
D. Save the master as .xlsm and disable all macros

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 worksheet is inserted, then a new workbook opens
D. A workbook opens, then a worksheet is inserted there

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 is marked final; select Unprotect Workbook
B. It is in Protected View; select Enable Editing
C. It is read-only recommended; select Enable Content
D. It has structure protection; select Allow Edit Ranges

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. Import with From Text/CSV and set columns to Text
D. Rename the CSV extension to .xlsx before opening

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. The .xlsx retains VBA, but the macros are disabled
D. Both files lose VBA because Save As updates the source

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. All worksheets, formulas, and visible cell formatting
B. Only the active sheet's exported values without workbook structure
C. Only formula expressions from every worksheet in the workbook
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. =$A4*B$1
B. =$A4*D$1
C. =$A2*D$1
D. =$C4*D$3

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

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

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. (12.30) in red
B. -12.30 in the default color
C. 12.30 in red
D. - in the default color

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. 13
B. 5
C. 12
D. 20

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

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

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. C
B. B
C. A
D. #VALUE!

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. Error
B. No
C. FALSE
D. Yes

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. February 1, 2025
C. January 31, 2025
D. December 31, 2024

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. 22:15
B. 23:45
C. 1: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. An AVERAGE formula calculates only the visible rows
B. An AGGREGATE formula includes every row in the range
C. A SUM formula includes both visible and filtered-out rows
D. A SUBTOTAL formula excludes rows hidden by the filter

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(B3:D3)
B. =SUM(B2:B4)
C. =SUM(B2:D4)
D. =SUM(E2:E4)