Expression and Boolean Expression

Explain the difference between an expression and boolean expression

Questions by epwalz

Showing Answers 1 - 3 of 3 Answers

Every expression have some value after the evavulation. If the resultant value is  neither TRUE nor FALSE then it is known as a boolean expression, else if come any other values then it is know as normal expression. So we can find an expression as boolean or normal by it resultant value...
  for example   :
   a++; (where a=10) the expression' svalue becomes 10. (NORMAL)
                           
 a>10; this expression,s value becomes TRUE or FALSE, depending  upon the value of a. so it is boolean.
                                        

  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