which of the following is not related to decision making
Answers
Answered by
1
Answer:
Explanation: do-while is an iteration statement. Others are decision making statements.
Answered by
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
Computer Science,
1 day ago
Math,
3 days ago
Hindi,
3 days ago
Math,
8 months ago
English,
8 months ago