Computer Science - Object Oriented Programming Using C++ - Discussion

Discussion Forum : Object Oriented Programming Using C++ - Section 1 (Q.No. 14)
14.
Which type of statement does not occur in computer programs?
sequence
loop
denial
selection
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
3 comments Page 1 of 1.

Majid Iqbal said:   1 decade ago
In most of computer languages, there are only three types of Statements (called Control Structure) depending upon how they are executed.
(1) Sequential Control Structure:
When all the statements (instructions) are executed Sequencially, it is called Sequencial Control Structure.
(2) Branching/Selection/Decesion Control Structure:
When we want to execute some set of instruction in one situation and entirely different set of instructions in another situation, it can be implemented by using selection control structure.
(3) Looping/iterative Control Structure.
When we want to execute some set of instruction repeatedly for a specific number of time or until a condition is met. this is called as looping control structure.

Sravani said:   8 years ago
Denial is nothing but the statement which is not true. [in point of programing language].

Divya said:   9 years ago
What is denial statements?

Please explain.

Post your comments here:

Your comments will be displayed after verification.