I wanna say 10 or ether -10 since if it was subtracted from 2 then it would equal -8
Answer:
negative 8
Step-by-step explanation:
W is width
W+9 is length
W+W+9=54
2w=45
45/2
W=22.5
Width is 22.5 length is 31.5
C: 7/8
Explanation: Since we want a number that makes 4p less than 4, we need to find a number for p that is less than 1. By looking at each fraction, only 7/8 will render it less than 4
Answer:
x=11
Step-by-step explanation:
The switch case works like an if or if-else, where each of the cases are conditionals. Here we have 7 cases and we know that our variable begins with x=5.
First, it enters to case 5 because of x=5, so x+=3, this means we add 3 to the actual value of the variable ⇒ x=8.
At this point, if there's not break the program continues to the next case, executing the statements until a break or the end on the switch is reached.
In this order, the x = 8 and next we add 1 (case 6) ⇒ x=9. We add 2 (case 7) x+=2 ⇒ x=10. Then we rest 1 (case 8) ⇒ x=9 and then we add 1 again as in case 9 ⇒ x=11.