Computer Science, asked by atharvpawar299, 1 month ago

which of the following is a one way decision-making statement
(A) IF THEN ELSE
(B) IF THEN
(C) WHILE WEND
(D) GOTO
Please answer my question ​

Answers

Answered by purveshKolhe
5

Answer:

if then is the answer.

I am a programmer only so you can trust me.

Answered by yogeshkumar49685
0

Concept:

You can use decision-making statements to control the execution order of individual statements in your application.

Given:

The following decision-making statements.

Find:

The statement which is one-way decision-making.

Solution:

(A) IF THEN ELSE is two-way decision-making.

(B) IF THEN is one-way decision-making.

(C) WHILE is one-way decision-making.

(D) GOTO transfers the control to the specified line but it is not a decision-making statement.

Hence, IF THEN and WHILE are one-way decision-making statements.

Similar questions