Author name: Umar Draz

educationist

Default file name in MS Excel is?

A. A) Document 1
B. B) Workbook 1
C. C) Book1
D. D) Worksheet
Correct answer is: C. C) Book1
Document 1: This is the default name for Word documents, not Excel spreadsheets.

Workbook 1: While technically accurate, "Workbook" isn't the standard default file extension used by Excel.

Worksheet: This refers to a single sheet within a workbook, not the entire workbook itself.

Modern versions of Excel typically use Book1.xlsx as the default filename. The ".xlsx" extension signifies the file format, which is the default for newer Excel files.

To insert chart in MS Excel, which shortcut key used?

A. A) Alt+F1
B. B) F2
C. C) F3
D. D) F4
Correct answer is: A. A) Alt+F1
Alt+F1: This combination quickly creates a basic chart, typically a clustered column chart, based on the data you've currently selected. It's a convenient way to visualize your data without needing to navigate through menus.

While the other options have their uses in Excel, they aren't specifically designed for chart insertion:

B. F2: This key is used to edit the content of the active cell.

C. F3: This key can be used for various purposes depending on the context, such as pasting a named range or finding a specific cell reference.

D. F4: This key can be used to repeat the last action you performed, but it's not directly related to chart insertion.

So, if you want to quickly create a chart from your selected data in Excel, remember the handy shortcut Alt+F1!

Which of these key are used in ms excel to insert current time In workbook.

A. A) Ctrl + Shift + ;
B. B) Ctrl+!
C. C) Ctrl+*
D. D) None of these
Correct answer is: A. A) Ctrl + Shift + ;
This keyboard shortcut is a handy way to insert the current time, including seconds, into the active cell of your Excel workbook. It's a quick and efficient method for capturing the moment.

Here's why the other options aren't used for inserting the current time:

B. Ctrl+!: This keyboard shortcut doesn't have a predefined function in Excel related to time insertion.

C. Ctrl+*: While Ctrl+* is a common keyboard shortcut used for copying formatting in Excel, it's not used for inserting the current time.

For the current date, you can use another helpful shortcut:

Ctrl+;: This inserts the current date in the format defined by your system settings.

When you insert an Excel file into a word document, the data are?

A. A) Hyperlinked
B. B) placed in a word table
C. C) linked
D. D) embedded
Correct answer is: C. C) linked
When you insert an Excel file into a Word document, by default, the data becomes embedded. This means:

A copy of the Excel data is placed within the Word document itself.

Any changes you make to the data in the Word document won't affect the original Excel file.

The original Excel file is not linked to the Word document.

Here's a breakdown of the other options and why they're not quite right:

A. Hyperlinked: This would create a link to the original Excel file. Clicking on the link would open the separate Excel file.

B. Placed in a word table: While you can choose to paste the Excel data into a Word table, embedding is the default behavior.

C. Linked: This would establish a connection between the Word document and the original Excel file. Any changes made to the data in the source Excel file would be reflected in the Word document. However, embedding is the standard approach.

What is the intersection of a column and row called in Excel?

A. A) A cell
B. B) A range
C. C) A column header
D. D) A row header
Correct answer is: A. A) A cell
Every spreadsheet in Excel is made up of a grid of cells. Each cell has a unique address, identified by its column letter (A, B, C, etc.) and row number (1, 2, 3, etc.). For example, cell B3 is located at the intersection of column B and row 3.

Here's why the other options are not the answer:

B. Range: A range refers to a selection of multiple cells, not a single intersection point.

C. Column header: This refers to the label at the top of a column, not the individual cells within the column.

D. Row header: This refers to the number displayed at the left side of a row, not the individual cells within the row.

Which function displays row data into column or column data into row?

A. A) Hyperlink
B. B) Index
C. C) Transpose
D. D) Rows
Correct answer is: C. C) Transpose
The Transpose function in Excel is specifically designed to swap the orientation of data between rows and columns. It can:

Convert a vertical range of cells (column) into a horizontal range (row)

Convert a horizontal range of cells (row) into a vertical range (column)

This makes Transpose incredibly useful for rearranging data and adapting it to your desired format.

Here's why the other options aren't used for data transposition:

A. Hyperlink: This function creates links to websites or other locations within the workbook. It doesn't affect data arrangement.

B. Index: This function is used to extract a specific value from a range based on its row and column position. While it can be used for data manipulation, it doesn't directly transpose data.

D. Rows: This function doesn't directly manipulate data layout. It returns the number of rows in a reference.

With which of the following all formulas in excel starts ?

A. A) /
B. B) *
C. C) $
D. D) =
Correct answer is: D. D) =
In Microsoft Excel, all formulas must begin with an equal sign (=). This symbol tells Excel that the following content is a formula, not just plain text or data you've entered into the cell.

Here's why the other options are not used to start formulas:

A) /: This forward slash is often used as a division operator within formulas, but it cannot initiate them.

**B) **: Asterisk () is another operator, typically used for multiplication within formulas. It also cannot start a formula.

**C) βˆ—βˆ—:Dollarsign() is used for various purposes in Excel, including absolute cell references. However, it's not used to initiate formulas.

Remember, the equal sign (=) signals to Excel that you're about to provide a calculation or instruction, making it the essential starting point for all formulas.

In MS Excel, you have a list of sales data in column A, and you need to find the second highest unique value in this list. Which of the following formulas will correctly return the second highest unique value?

A. A =LARGE(A:A, 2)
B. B =LARGE(UNIQUE(A:A), 2)
C. C =INDEX(SORT(UNIQUE(A:A), , -1), 2)
D. D =SMALL(UNIQUE(A:A), 2)
Correct answer is: C. C =INDEX(SORT(UNIQUE(A:A), , -1), 2)
C. =INDEX(SORT(UNIQUE(A:A), , -1), 2) is the correct formula to find the second highest unique value in column A of your MS Excel data.

Here's why each option works (or doesn't):

A. =LARGE(A:A, 2): This formula uses the LARGE function, which returns the nth largest value in a range. However, it doesn't consider uniqueness. So, if there are duplicates of the highest value, it might not be the second truly unique highest value.

B. =LARGE(UNIQUE(A:A), 2): This formula is on the right track! It uses UNIQUE to remove duplicates and then LARGE to find the second largest value within the unique list. However, there's a simpler way.

C. =INDEX(SORT(UNIQUE(A:A), , -1), 2): This is the champion! It breaks down like this:

UNIQUE(A:A) removes duplicates from column A.

SORT(..., , -1) sorts the unique values in descending order (largest to smallest) because -1 indicates descending order.

INDEX(...) picks the value at a specific position (the second one in this case, indicated by 2).

D. =SMALL(UNIQUE(A:A), 2): This formula uses SMALL which finds the nth smallest value. We need the highest unique value, not the smallest, so this isn't the answer.

Therefore, formula C efficiently combines removing duplicates, sorting, and selecting the second largest value in a single expression.

Test item cannot discriminate low achievers and high achievers when its value is lower than?

A. nswer is = C
B. 1
C. 0.30
D. None
Correct answer is: C. 0.30
null

Test item discriminates 100% when its value for discrimination is?

A. A. 0.30 – 1
B. B. 1
C. C. 0.30
D. D. None
Correct answer is: B. B. 1
Join Our WhatsApp Channel! ×
Scroll to Top