MS Excel top 100 one liner questions

🔹 General Excel Basics

  1. Q: What is the default file extension of Excel 2016?
    A: .xlsx
  2. Q: Which company developed MS Excel?
    A: Microsoft
  3. Q: Which key is used to start a new line in a cell?
    A: Alt + Enter
  4. Q: What is the default row height in Excel?
    A: 15
  5. Q: What is the maximum number of rows in Excel 2016?
    A: 10,48,576
  6. Q: What is the maximum number of columns in Excel 2016?
    A: 16,384 (Column XFD)
  7. Q: What is a cell in Excel?
    A: Intersection of a row and column
  8. Q: How many sheets are there by default in Excel 2016?
    A: One
  9. Q: What is the name of the horizontal lines in Excel?
    A: Rows
  10. Q: What is the name of vertical lines in Excel?
    A: Columns

🔹 Excel Formulas & Functions

  1. Q: Which symbol is used to start a formula in Excel?
    A: =
  2. Q: Which function is used to calculate sum?
    A: =SUM()
  3. Q: Which function finds the average value?
    A: =AVERAGE()
  4. Q: Which function returns the largest value?
    A: =MAX()
  5. Q: Which function returns the smallest value?
    A: =MIN()
  6. Q: Which function counts numeric values?
    A: =COUNT()
  7. Q: Which function counts all non-empty cells?
    A: =COUNTA()
  8. Q: What is the function for today’s date?
    A: =TODAY()
  9. Q: Which function returns current time?
    A: =NOW()
  10. Q: Which function is used to remove extra spaces?
    A: =TRIM()
  11. Q: Which function joins text?
    A: =CONCATENATE() or =TEXTJOIN()
  12. Q: What is the use of IF function?
    A: To test a condition and return value
  13. Q: What is the syntax of IF function?
    A: =IF(condition, value_if_true, value_if_false)
  14. Q: Which function finds specific value in range?
    A: =VLOOKUP()
  15. Q: What does ISBLANK() do?
    A: Checks if a cell is empty

🔹 Excel Shortcuts

  1. Q: Shortcut to copy a cell?
    A: Ctrl + C
  2. Q: Shortcut to paste?
    A: Ctrl + V
  3. Q: Shortcut to cut?
    A: Ctrl + X
  4. Q: Shortcut to save workbook?
    A: Ctrl + S
  5. Q: Shortcut to open new workbook?
    A: Ctrl + N
  6. Q: Shortcut to print workbook?
    A: Ctrl + P
  7. Q: Shortcut to undo action?
    A: Ctrl + Z
  8. Q: Shortcut to redo action?
    A: Ctrl + Y
  9. Q: Shortcut to bold text?
    A: Ctrl + B
  10. Q: Shortcut to italicize text?
    A: Ctrl + I
  11. Q: Shortcut to underline text?
    A: Ctrl + U
  12. Q: Shortcut to insert hyperlink?
    A: Ctrl + K
  13. Q: Shortcut to move to next worksheet?
    A: Ctrl + Page Down
  14. Q: Shortcut to move to previous worksheet?
    A: Ctrl + Page Up
  15. Q: Shortcut to find text in worksheet?
    A: Ctrl + F

🔹 Formatting & Editing

  1. Q: Shortcut to format cells?
    A: Ctrl + 1
  2. Q: Shortcut to insert new row?
    A: Ctrl + Shift + +
  3. Q: Shortcut to delete row?
    A: Ctrl + -
  4. Q: How to merge cells?
    A: Home > Merge & Center
  5. Q: How to wrap text in a cell?
    A: Home > Wrap Text
  6. Q: Shortcut to AutoFit column width?
    A: Alt + H + O + I
  7. Q: Shortcut to AutoFit row height?
    A: Alt + H + O + A
  8. Q: What is conditional formatting?
    A: Format cells based on condition
  9. Q: Where is Format Painter found?
    A: Home tab
  10. Q: What is used to protect worksheet?
    A: Review > Protect Sheet

🔹 Charts & Data Tools

  1. Q: Which chart is used for trends over time?
    A: Line Chart
  2. Q: Which chart is used to compare parts of whole?
    A: Pie Chart
  3. Q: Shortcut to insert chart?
    A: Alt + F1
  4. Q: What is a Pivot Table?
    A: Tool to summarize large data
  5. Q: Where is Data Validation found?
    A: Data tab
  6. Q: What is used to sort data?
    A: Sort button under Data tab
  7. Q: What is the use of Filter?
    A: Show only specific data
  8. Q: What is Flash Fill?
    A: Automatically fills pattern data
  9. Q: Which feature removes duplicates?
    A: Data > Remove Duplicates
  10. Q: What is Goal Seek?
    A: To find input for desired output

🔹 File & Workbook Management

  1. Q: What is a workbook?
    A: A file that contains worksheets
  2. Q: What is a worksheet?
    A: A single sheet in Excel file
  3. Q: Shortcut to switch between open Excel files?
    A: Ctrl + Tab
  4. Q: Shortcut to rename worksheet?
    A: Alt + H + O + R
  5. Q: How to insert comment in a cell?
    A: Shift + F2
  6. Q: What is cell reference?
    A: Address of a cell (e.g., A1)
  7. Q: What is an absolute reference?
    A: A reference that doesn’t change ($A$1)
  8. Q: What is relative reference?
    A: A reference that changes when copied
  9. Q: What is mixed reference?
    A: Combination of absolute and relative
  10. Q: What does .xls stand for?
    A: Excel Spreadsheet (older version)

🔹 Advanced Excel

  1. Q: What is the function of =IFERROR()?
    A: Returns value if error occurs
  2. Q: What is =LEN() used for?
    A: Counts characters in a cell
  3. Q: What is =LEFT(text,n)?
    A: Returns first n characters from text
  4. Q: What is =RIGHT(text,n)?
    A: Returns last n characters from text
  5. Q: What does =MID(text, start, num) do?
    A: Extracts text from middle
  6. Q: What is =ROUND() used for?
    A: Rounds a number to desired digits
  7. Q: What is the use of =TEXT()?
    A: Formats numbers/dates as text
  8. Q: What is the use of =PROPER()?
    A: Capitalizes first letter of each word
  9. Q: What is =LOWER()?
    A: Converts text to lowercase
  10. Q: What is =UPPER()?
    A: Converts text to uppercase

🔹 Data Security & Review

  1. Q: How to protect a workbook with password?
    A: File > Info > Protect Workbook
  2. Q: Can you lock specific cells in Excel?
    A: Yes, using Format Cells > Protection
  3. Q: How to enable AutoSave in Excel?
    A: File > Options > Save > AutoSave
  4. Q: What is Track Changes?
    A: Shows edits made by users
  5. Q: Shortcut to check spelling?
    A: F7

🔹 Miscellaneous

  1. Q: What is the default alignment for text in Excel?
    A: Left
  2. Q: What is the default alignment for numbers?
    A: Right
  3. Q: What is the intersection of row 5 and column C?
    A: Cell C5
  4. Q: What are gridlines?
    A: Light lines dividing cells
  5. Q: Can you insert image in Excel?
    A: Yes, via Insert > Pictures
  6. Q: What is the use of Name Box?
    A: Shows active cell name
  7. Q: What does Formula Bar show?
    A: Formula or content of active cell
  8. Q: What is zoom control used for?
    A: Enlarge or reduce worksheet view
  9. Q: How to freeze top row?
    A: View > Freeze Panes > Freeze Top Row
  10. Q: How to insert drop-down list?
    A: Data > Data Validation
  11. Q: What is the use of Comments in Excel?
    A: To add notes to cells
  12. Q: Can Excel be used for budgeting?
    A: Yes
  13. Q: Can Excel connect to databases?
    A: Yes, via Data > Get External Data
  14. Q: What is cell range?
    A: Group of selected cells (e.g., A1:B5)
  15. Q: What is AutoSum?
    A: Adds numbers quickly using Σ button

Leave a Reply

Your email address will not be published. Required fields are marked *