Every formula entered in an MS Excel cell must begin with which of the following characters?
- A.The hash sign
- B.The equals sign
- C.The asterisk
- D.The colon
Correct answer
B. The equals sign
Explanation
The correct answer is B, the equals sign. Excel treats whatever follows an equals sign as something to be calculated, so =A1+B1 adds the two cells and =SUM(A1:A10) totals a range. Without that sign the same text is stored as plain text and no calculation happens, which is why a formula that shows itself in the cell instead of a result has usually lost its equals sign.
Option A, the hash sign, begins an error value such as #DIV/0! or #NAME? and is written by Excel, never by the user. Option C, the asterisk, is the multiplication operator used inside a formula, as in =A1*B1, and a formula may also be started with a plus or a minus sign in Excel for the convenience of old Lotus users, but never with an asterisk. Option D, the colon, is the range operator that joins the first and last cells of a block, as in A1:A10. Each of these three has a real job in Excel, just not the job of starting a formula.
Read the full article: MS Excel: Formulas, Functions and Shortcuts
Practice Questions
View allIn MS - Excel, what is the shortcut key you can press to Select the entire row?
- A.Ctrl + Shift + Space
- B.Ctrl + Home
- C.Ctrl + Space
- D.Shift + Space
Show answer
Correct answer: D. Shift + Space
Explanation
The correct answer is D, Shift + Space. Pressing Shift together with the spacebar selects the whole row that holds the active cell, from column A right across to the last column of the grid. The row number on the left turns highlighted, and any formatting, deletion or height change you apply next affects the entire row.
Option A, Ctrl + Shift + Space, selects the whole worksheet, which is the same thing Ctrl + A does when the active cell stands outside a data range. Option B, Ctrl + Home, does not select anything at all; it only moves the cursor back to cell A1 from wherever it happens to be. Option C, Ctrl + Space, is the companion of the right answer and selects the whole column instead of the whole row, which is exactly the swap the paper setter is hoping for. Remember the pair together: Shift for the row, Ctrl for the column.
Which of the following displays both the name of the application and the name of the spreadsheet in MS-Excel?
- A.Title bar
- B.Tool bar
- C.Task bar
- D.Menu bar
Show answer
Correct answer: A. Title bar
Explanation
The correct answer is A, Title bar. The title bar is the strip along the very top of the Excel window, and it carries the name of the open workbook followed by the name of the program, for example Book1 - Excel. The minimise, maximise and close buttons sit at its right end, and the Quick Access Toolbar at its left.
Option B, the tool bar, holds command buttons rather than names; in Excel 2007 and later it survives only as the small Quick Access Toolbar. Option C, the task bar, belongs to the Windows operating system and not to Excel; it runs along the bottom of the screen and shows the Start button and the programs that are open. Option D, the menu bar, was the row of word menus of Excel 2003 and earlier, replaced by the ribbon from Excel 2007; it listed commands such as File and Edit, never the file name. The cell address, by contrast, is shown in the Name Box beside the formula bar.
The 'LEN' function in MS-Excel belongs to which of the following categories?
- A.Financial
- B.Logical
- C.Text
- D.Math & Trig
Show answer
Correct answer: C. Text
Explanation
The correct answer is C, Text. LEN returns the number of characters in an entry, counting letters, digits, punctuation and spaces alike, so =LEN("Excel") gives 5. Because it works on text rather than on values, Excel files it under the Text category of the Formulas tab, along with LEFT, RIGHT, MID, UPPER, LOWER, TRIM and CONCATENATE.
Option A, Financial, holds the money functions such as PMT, RATE, NPV and FV, which work out instalments, interest rates and present values. Option B, Logical, holds IF, AND, OR, NOT and IFERROR, the functions that test a condition and return one result or another. Option D, Math and Trig, holds SUM, ROUND, ABS, SQRT, POWER and MOD, which calculate on numbers. LEN does return a number, and that is the trap that pulls candidates towards D, but a function is classified by what it works on, and LEN works on text.
Which out of the following is used as an electronic spread sheet?
- A.Microsoft Word
- B.Microsoft Power point
- C.Microsoft Excel
- D.Microsoft Access
Show answer
Correct answer: C. Microsoft Excel
Explanation
The correct answer is C, Microsoft Excel. An electronic spreadsheet stores data in a grid of rows and columns and recalculates its formulas whenever a value changes, and Excel is the spreadsheet program of the Microsoft Office suite. Its files carry the .xlsx extension from Excel 2007 onwards.
Option A, Microsoft Word, is a word processor, used to type, edit and format text documents that are saved with the .docx extension. Option B, Microsoft PowerPoint, is presentation software, used to build slides for a talk and saved with the .pptx extension. Option D, Microsoft Access, is the database management program of the suite; it also shows tables in a grid, which makes it the strongest distractor, but a database stores records in related tables and is queried, while a spreadsheet calculates cell by cell. Remember the pairing of the four programs with their jobs and this whole family of questions becomes easy.
Which function key displays the Print Preview window in Microsoft Office?
- A.Alt + Ctrl + F2
- B.Alt + F2
- C.Shift + F2
- D.Ctrl + F2
Show answer
Correct answer: D. Ctrl + F2
Explanation
The correct answer is D, Ctrl + F2. Ctrl together with F2 opens the print area of the Backstage view in Excel, Word and PowerPoint, where the page is shown exactly as it will be printed and the printer, copies, orientation and margins can be set. In Office 2003 and earlier the same combination opened the older Print Preview window.
Option A, Alt + Ctrl + F2, opens a file rather than previewing one, working like Ctrl + O. Option B, Alt + F2, was the Save As shortcut of very old Office versions and does nothing useful today; the modern Save As key is F12. Option C, Shift + F2, adds or edits a comment on the active cell in Excel, which is a completely different job. Learning the F2 family together helps: F2 alone edits the active cell, Shift + F2 handles a comment, Ctrl + F2 previews the print, and Alt + equals inserts a SUM.