Microsoft Excel Questions & Answers - Page 13

61.

Which option is used to hide/show the Headings in MS Excel?

A.

View Menu > Show Group > Headings

B.

View Menu > Show Group > Gridlines

C.

View Menu > Show Group > Headers

D.

View Menu > Show Group > Titles

Correct answer is A

No explanation has been provided for this answer.

62.

Which option displays the total number of cells, formulas, charts, tables, sheets, etc. in a Workbook?

A.

Workbook Statistics

B.

Statistics

C.

Excel Statistics

D.

Workbook Analysis

Correct answer is A

No explanation has been provided for this answer.

63.

Which function is used to find the sum of complex numbers in MS Excel?

A.

SUM()

B.

ADD()

C.

CSUM()

D.

IMSUM()

Correct answer is D

Example:

=IMSUM("1-2i", "2+4i") // Returns 3+2i

64.

Which is the correct syntax of the HEX2BIN() function in MS Excel?

A.

=HEX2BIN (number, [places])

B.

=HEX2BIN (number)

C.

=HEX2BIN (number, BASE, [places])

D.

=HEX2BIN (number, BASE)

Correct answer is A

Example:

=HEX2BIN("F") // Return 1111
=HEX2BIN("F",8) // Returns 00001111

65.

Which function is used to remove extra spaces from the text in MS Excel?

A.

REMOVE()

B.

TRIM()

C.

TRUNC()

D.

All of the above

Correct answer is B

The TRIM() function in Excel removes extra spaces from text. It deletes all leading, trailing and in-between spaces except for a single space character between words.

Syntax:

=TRIM (text)

Example:

=TRIM("     Hello      World!    ") // Returns "Hello World!"