Answer:
D=41.48 ft

Explanation:
Given that
y=0.5 x²
Vx= 2 t
We know that

At t= 0 ,x=0

At t= 3 s

![x=[t^2\left\right ]_0^3](https://tex.z-dn.net/?f=x%3D%5Bt%5E2%5Cleft%5Cright%20%5D_0%5E3)
x= 9 ft
When x= 9 ft then
y= 0.5 x 9² ft
y= 40.5 ft
So distance from origin is
x= 9 ft ,y= 40.5 ft

D=41.48 ft

Vx= 2 t

At t= 3 s , x= 9 ft
y=0.5 x²

y=0.5 x²


Given that








Answer:
Both of them are wrong
Explanation:
The two technicians have given the wrong information about the wires.
This is because firstly, a higher rating of AWG means it is smaller in diameter. Thus, the diameter of a 18 AWG wire is smaller than that of a 12 AWG wire and that makes the assertion of the technician wrong.
Also, the higher the resistance, the smaller the cross sectional area meaning the smaller the diameter. A wire with bigger cross sectional area will have a smaller resistance
So this practically makes the second technician wrong too
Answer:
The wall of an impact socket is around 50% thicker than that of a regular socket, making it suitable for use with pneumatic impact tools, whereas regular sockets should only be used on hand tools.
Explanation:
This allows the socket to remain securely attached to the impact wrench anvil, even under high stress situations.
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