Basic Computer Interview Questions and Answers Pdf - 2

Question: 6

Define Column, Row, Cell, Cell Pointer?

Columns: Columns are vertical lines of Cells. They are named from A to Z afterwards AA to AZ, BA to BZ and so on.

Rows: Rows are horizontal lines of Cells. A number identifies each row.

Cell : A cell is the point where the row and the column intersect. The width of cell spaces can be altered to suit the application.

Cell Pointer: It is a highlighted Cell boundary, that specifies which cell is active at the moment.

Question: 7

How can you measure the quality of Algorithm?

The primary factors that are often used to judge the quality of an algorithm are Time requirement, Memory requirement, Accuracy of solution, Generating.

Question: 8

What are the characteristics of Algorithm?

The characteristics of Algorithms are

In Algorithms each and every instruction should be precise.

In Algorithms each and every instruction should be unambiguous.

The instructions in an Algorithm should not be repeated infinitely.

Ensure that the Algorithm will ultimately terminate.

The Algorithm should be written in sequence.

It looks like normal English.

The desired result should be obtained only after the algorithm terminates.

Question: 9

How many types the Algorithm can be represented?

The Algorithm can be represented into following ways

Normal English

Program

Flowchart

Pseudocode

Decision table

Question: 10

What is a Macro?

A macro is the series of commands or keystrokes stored under a common name, and can be run at anytime.

Related Questions