Apache POI - Online Quiz



Following quiz provides Multiple Choice Questions (MCQs) related to Apache POI. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.

Questions and Answers

Answer : A

Explanation

HSSF (Horrible Spreadsheet Format) - It is used to read and write xls format of MS-Excel files.

Answer : D

Explanation

HSSFWorkbook class is a high-level class under the org.apache.poi.hssf.usermodel package. It implements the Workbook interface and is used for Excel files in .xls format.

Answer : C

Explanation

XSSFRow is a class under the org.apache.poi.xssf.usermodel package. It implements the Row interface, therefore it can create rows in a spreadsheet.

Q 4 - Which of the following type of cell represents number cell in Apache POI?

A - XSSFCell.CELL_TYPE_NUMERIC

B - XSSFCell.CELL_NUMERIC

C - XSSFCell.NUMERIC

D - None of the above.

Answer : A

Explanation

XSSFCell.CELL_TYPE_NUMERIC represents number cell in Apache POI.

Q 5 - Which of the following class is used to style cell in Apache POI?

A - XSSFStyle

B - XSSFCellStyle

C - Style

D - None of the above.

Answer : B

Explanation

XSSFCellStyle class is used to style cell in Apache POI.

Answer : B

Explanation

cell.setCellValue("POWER(C2:C3)") method is used to compute power in a formula cell.

apache_poi_questions_answers.htm
Advertisements