Computer Science, asked by sanahusna5, 28 days ago

Explain if...else statement with small example​

Answers

Answered by sonimishra92657
2

Answer:

meaning of if

1.

(introducing a conditional clause) on the condition or supposition that; in the event that.

Explanation:

Mark like and follow

Answered by profdambaldor
0

Answer:

Explanation:

let Age = 5;

if(Age<=5)

{

print("Very small kid");

}

else

{

print("Now send him school");

}

Similar questions