Answer:
mobile phones and internet access
Explanation:
I got it right on my quiz
Answer:
total weight of aggregate = 5627528 lbs = 2814 tons
Explanation:
we get here volume of space to be filled with aggregate that is
volume = 2000 × 48 × 0.5
volume = 48000 ft³
now filling space with aggregate of the density that is
density = 0.95 × 119.7
density = 113.72 lb/ft³
and dry weight of this aggregate is
dry weight = 48000 × 113.72
dry weight = 5458320 lbs
we consider here percent moisture is by weigh
so weight of moisture in aggregate will be
weight of moisture = 0.031 × 5458320
weight of moisture = 169208 lbs
so here total weight of aggregate is
total weight of aggregate = 5458320 + 169208
total weight of aggregate = 5627528 lbs = 2814 tons
Answer:
Explanation:
There are three points in time we need to consider. At point 0, the mango begins to fall from the tree. At point 1, the mango reaches the top of the window. At point 2, the mango reaches the bottom of the window.
We are given the following information:
y₁ = 3 m
y₂ = 3 m − 2.4 m = 0.6 m
t₂ − t₁ = 0.4 s
a = -9.8 m/s²
t₀ = 0 s
v₀ = 0 m/s
We need to find y₀.
Use a constant acceleration equation:
y = y₀ + v₀ t + ½ at²
Evaluated at point 1:
3 = y₀ + (0) t₁ + ½ (-9.8) t₁²
3 = y₀ − 4.9 t₁²
Evaluated at point 2:
0.6 = y₀ + (0) t₂ + ½ (-9.8) t₂²
0.6 = y₀ − 4.9 t₂²
Solve for y₀ in the first equation and substitute into the second:
y₀ = 3 + 4.9 t₁²
0.6 = (3 + 4.9 t₁²) − 4.9 t₂²
0 = 2.4 + 4.9 (t₁² − t₂²)
We know t₂ = t₁ + 0.4:
0 = 2.4 + 4.9 (t₁² − (t₁ + 0.4)²)
0 = 2.4 + 4.9 (t₁² − (t₁² + 0.8 t₁ + 0.16))
0 = 2.4 + 4.9 (t₁² − t₁² − 0.8 t₁ − 0.16)
0 = 2.4 + 4.9 (-0.8 t₁ − 0.16)
0 = 2.4 − 3.92 t₁ − 0.784
0 = 1.616 − 3.92 t₁
t₁ = 0.412
Now we can plug this into the original equation and find y₀:
3 = y₀ − 4.9 t₁²
3 = y₀ − 4.9 (0.412)²
3 = y₀ − 0.83
y₀ = 3.83
Rounded to two significant figures, the height of the tree is 3.8 meters.
The C++ code that would draw all the iterations in the selection sort process on the array is given below:
<h3>C++ Code</h3>
#include <stdio.h>
#include <stdlib.h>
int main() {
int i, temp1, temp2;
int string2[16] = { 0, 4, 2, 5, 1, 5, 6, 2, 6, 89, 21, 32, 31, 5, 32, 12 };
_Bool check = 1;
while (check) {
temp1 = string2[i];
temp2 = string2[i + 1];
if (temp1 < temp2) {
string2[i + 1] = temp1;
string2[i] = temp2;
i = 0;
} else {
i++;
if (i = 15) {
check = !check;
}
}
}
return 0;
}
Read more about C++ programming here:
brainly.com/question/20339175
#SPJ1