which statement provide a compact way to perform multiple tests on a condition
Answers
Answered by
5
Answer:
Explanation:
if (a>b) .and .(b>c)
Answered by
2
The if statement is used to check the multiple condition
if(x>y && x>z)// check the multiple condition
Explanation:
- The if statement is used to check the multiple condition in the program.It Provided the compact way to check the multiple condition in the program,Following are the syntax in the program
if(conditions);
- if(x>y && x>z) In this we check the multiple condition of x variable if both the condition of x is true then it returns the true in the if block .
Learn More:
https://brainly.in/question/372659
Similar questions