Microsoft Office questions and answers

Microsoft Office Questions and Answers

A basic knowledge of Microsoft Office applications such as MS Word, MS Excel and MS PowerPoint is often required for most jobs. Practise and prepare for your aptitude test with these frequently asked MS Office questions and answers.

176.

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.

177.

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.

178.

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

179.

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

180.

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!"