Respuesta :
Answer:
No because the computer is programmed to answer in such way as that the user properly understands with either yes or no
Explanation:
A computer cannot evaluate an expression to be between true or false.
Expressions in computers are usually boolean expressions; i.e. they can only take one of two values (either true or false, yes or no, 1 or 0, etc.)
Take for instance, the following expressions:
- [tex]1 +2 = 3[/tex]
- [tex]5 > 4[/tex]
- [tex]4 + 4 < 10[/tex]
The above expressions will be evaluated to true, because the expressions are correct, and they represent true values.
Take for instance, another set of expressions
- [tex]1 + 2 > 3[/tex]
- [tex]5 = 4[/tex]
- [tex]4 + 4 > 10[/tex]
The above expressions will be evaluated to false, because the expressions are incorrect, and they represent false values.
Aside these two values (true or false), a computer cannot evaluate expressions to other values (e.g. maybe)
Read more about computer expressions at:
https://brainly.com/question/16843003