The expression 1x² + 14x + 40 is a quadratic expression, and the answers in the yellow boxes are 40 and 14
<h3>How to complete the boxes?</h3>
The quadratic expression is given as:
1x² + 14x + 40
This implies that:
a = 1
b = 14
c = 40
Because a quadratic expression is represented as:
ax² + bx + c
The expressions in the yellow boxes are:
a * c and b
So, we have:
a * c = 1 * 40 = 40
b = 14
Hence, the answers in the yellow boxes are 40 and 14
Read more about quadratic expressions at:
brainly.com/question/18797214
#SPJ1
Answer:
Hi! The answer to your question is y = 9
Step-by-step explanation:
☆*: .。..。.:*☆☆*: .。..。.:*☆☆*: .。..。.:*☆☆*: .。..。.:*☆
☁Brainliest is greatly appreciated!☁
Hope this helps!!
- Brooklynn Deka
Answer:
False
Step-by-step explanation:
The surface area of the cone is




The surface area of the cylinder is:



9514 1404 393
Answer:
26 square units
Step-by-step explanation:
Counting grid squares on the graph, we see that segment AB is the hypotenuse of a right triangle with legs 2 and 3. Its length is ...
AB = √(2²+3²) = √13
We can also see that the adjacent longer sides are twice this length, each being the hypotenuse of a triangle that is 6 wide and 4 high.
AC = √(6² +4²) = √52 = 2√13
Then the area is ...
A = LW
A = (2√13)(√13) = 2·13 = 26 . . . square units
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.