Answer: D
Step-by-step explanation:
A) 3*0^2+2(0-5)>8
-10>8 -> not true
B) 3*(-1)^2+2(-1-5)>8
3*1+2*(-6)>8
3- 12>8
-9> 8 -> not true
C) 3*(-2)^2+2(-2-5)>8
3*4+2*(-7)>8
12-14>8
-2> 8 -> not true
D) ) 3*(-3)^2+2(-3-5)>8
3*9+2*(-8)>8
27-16>8
11> 8 -> true
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.
Answer:

Step-by-step explanation:
2x² + 5x + 3 = (x + 1) (2x + 3)
x² + 2x + 1 = (x + 1) (x + 1)
(x + 1) cancels out because there is one in the denominator and the numerator, leaving you with the answer.
Hope this helps!