Answer:
return a specific value, calculation or message if certain condition met
Explanation:
"if" is used for conditional statements that means, do some work if the condition is met against that logic.
e.g.
If (a > 5)
{
Show "a is greater than 5"
}
so if we put a= 6 than condition met and given statement will be shown on out put as "a is greater than 5".