Math, asked by mejanurshaikh, 3 days ago

which of the following is not related to decision making

Answers

Answered by ravishankar26483
1

Answer:

Explanation: do-while is an iteration statement. Others are decision making statements.

Answered by dhanlaxmigiri983
0

3

Answer:

if(a<=0)

{

if(a==0)

{

System.out.println("1 ");

else

System.out.println("2 ");

System.out.println("3 ");

Step-by-step explanation:

if(a<=0)

{

if(a==0)

{

System.out.println("1 ");

}

else

{

System.out.println("2 ");

}

}

System.out.println("3 ");

Similar questions