Answer:
hope the above solution will help you
Answer:
Symbols of inclusion are symbols used in mathematical expressions that group terms or factors together. They indicate that when we are simplifying expressions, we are to perform what's inside the symbols first. The three types of symbols of inclusion are parentheses, brackets, and braces.
X^2-6x+7=0
-b +/- sqrt b^2-4ac all over 2a
a=1 b= -6 and c=7
6+/- sqrt 36-4×1×7 all over 2×1
6+/- sqrt 8 all over 2
6+/- 2sqrt2 all over 2
reduce
3+/- sqrrt2
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:
i cant figure it out sorry
Step-by-step explanation: