Respuesta :
Answer:
You can use an if statement since it is a Boolean type of function.
An if statement has to be true to be used. A double == is the best when checking.
These are all the possible symbols you can use to check if the math answer is correct: || , &&, <, >, <=, >=, ^, != , ==
As seen in the images, if x is the same value as y it is correct. However if it is not, it is wrong.


Boolean can be use to check math as follows;
- 6 < 5
- 8 > 7
- 6 == 9
What are Booleans?
Booleans is a datatype with two possible values namely True and False.
The Boolean can be denoted as bool.
In programming its often use to check if a mathematical expression or statement are True or False.
Therefore, let's use it in mathematical expression;
6 < 5
8 > 7
6 == 9
The first expression will return False.
The second expression will return True.
The third expression will return False.
learn more on Booleans here: brainly.com/question/14120893
#SPJ11