Complete the following expressions and equations.
Expression | Value Produced |
| Expression | Value Produced |
3 + 4 | 7 |
| 5 == 5 | True |
4 - 3 |
|
| F && T |
|
7 + 2 |
|
| !F |
|
2 * (3 * 4) |
|
| Math.floor(2/4) |
|
(2 * 3) * 4 |
|
| Math.round(2/4) |
|
7 < 5 |
|
| Math.ceil(2/4) |
|
7<5 && 5<7 |
|
| 5 * 4 / 10 |
|
7<5 || 5<7 |
|
| 5 * Math.floor(4/10) |
|
T || T |
|
| 5 * Math.round(4/10) |
|
T || F |
|
| 5 * Math.ceil(4/10) |
|
7*2>13||7*y>25 |
|
| 10 % 4 |
|
7*2>13||7*y>25 |
|
| 22 % 4 |
|
|
|
| 2 % 4 |
|
(5+2==7&&7-3==4) || (3*2>4&&Math.floor(10/3)+4<=7) |
|
Use JavaScript to solve the equations