Computer Applications
State whether the following statement is True or False :
if statement is also called as a conditional statement.
Java Operators
31 Likes
Answer
True
Answered By
1 Like
Related Questions
if(a<b)
c = a;
else
c = b;
It can be written as:- c = (b<a) ? a:b;
- c = (a!=b) ? a:b;
- c = (a<b) ? b:a;
- none
If(a < b && a < c)
- a is the greatest number
- a is the smallest number
- b is the greatest number
- none (where a, b and c are three integer numbers)
State whether the following statement is True or False :
A conditional statement is essentially formed by using relational operators.
State whether the following statement is True or False :
An if-else construct accomplishes 'fall through'.