C Programming Question Bank with Answers Pdf - 2

Question: 6

How a computer language should be?

In the computer languages every statement must be written precisely, including commas and semicolons. One has to be very careful while writing these lines.

Question: 7

Give the properties of an algorithm?

An algorithm is a procedure with the following properties.

1. There should be a finite number of steps.

2. Each step is executable without any ambiguity.

3. Each step is executable within a finite amount of time, using a finite amount of memory space.

4. The entire program should be executed within a finite amount of time.

Question: 8

Give two important differences between the flow chart and the pseudo code?

Flow chart is a pictorial representation of an algorithm, whereas Pseudo code is in between English and the high level computer languages. Flow charts will occupy many pages where as pseudo codes are small in their size but they have the power to specify any procedure.

Question: 9

What is sequencing?

The calculations are done one another in a sequence. This is one of the fundamental control structures.

Question: 10

What are the advantages of flowchart?

The advantages of the flow charts are

1. They are precise. They represent our thoughts exactly.

2. It is easy to understand small flow charts.

Related Questions