Conditional Statements

What are Conditional Statements?

Questions by sobinsopanam

Showing Answers 1 - 3 of 3 Answers

The statements which are executable only when it satisfies a particular condition
?example:
if(some condition)
? {
? ? ? ? // some statement
?}

switch (input)
{
case 1:
case 2:
//
default:
}

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions